0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-26 21:04:25 +08:00

Add missing PUGI__FN to string_to_integer

This commit is contained in:
Arseny Kapoulkine 2017-03-21 22:06:19 -07:00
parent 956be4ca4b
commit 101f32884f

View File

@ -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;