src/cxx_supportlib/vendor-modified/boost/thread/once.hpp in passenger-5.0.24 vs src/cxx_supportlib/vendor-modified/boost/thread/once.hpp in passenger-5.0.25

- old
+ new

@@ -30,10 +30,10 @@ namespace boost { // template<class Callable, class ...Args> void // call_once(once_flag& flag, Callable&& func, Args&&... args); template<typename Function> -inline void call_once(Function func,once_flag& flag) +inline void call_once(Function func,boost::once_flag& flag) //inline void call_once(void (*func)(),once_flag& flag) { call_once(flag,func); } }