summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-03-21 22:06:19 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-03-21 22:06:19 -0700
commit101f32884f794130d16b8c663883528caefd5b7f (patch)
treea2128231632a71892cc005a67cc2f912d8a27ef0
parent956be4ca4bed18560b75aea52973da89f9723d46 (diff)
Add missing PUGI__FN to string_to_integer
-rw-r--r--src/pugixml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index e4c04eb..63b197e 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -4439,7 +4439,7 @@ PUGI__NS_BEGIN
}
// get value with conversion functions
- template <typename U> U string_to_integer(const char_t* value, U minneg, U maxpos)
+ template <typename U> PUGI__FN U string_to_integer(const char_t* value, U minneg, U maxpos)
{
U result = 0;
const char_t* s = value;