aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/rapidxml/msvc-alloc_func.diff
blob: 82a22b948ab291a24e04887c1ed3f82c8e69232a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/rapidxml.hpp b/rapidxml.hpp
index ae91e08..853bc36 100644
--- a/rapidxml.hpp
+++ b/rapidxml.hpp
@@ -382,7 +382,7 @@ namespace rapidxml
     public:
 
         //! \cond internal
-        typedef void *(alloc_func)(std::size_t);       // Type of user-defined function used to allocate memory
-        typedef void (free_func)(void *);              // Type of user-defined function used to free memory
+        typedef void *  alloc_func(std::size_t);       // Type of user-defined function used to allocate memory
+        typedef void   free_func(void *);              // Type of user-defined function used to free memory
         //! \endcond