diff --git a/libs/audiographer/audiographer/general/sr_converter.h b/libs/audiographer/audiographer/general/sr_converter.h index 8edc4b8c99..4afa6289b0 100644 --- a/libs/audiographer/audiographer/general/sr_converter.h +++ b/libs/audiographer/audiographer/general/sr_converter.h @@ -35,7 +35,6 @@ class LIBAUDIOGRAPHER_API SampleRateConverter * Note that outpt size may vary a lot. * May or may not output several contexts of data. * \n Should be RT safe. - * \TODO Check RT safety from libsamplerate */ void process (ProcessContext const & c); using Sink::process; diff --git a/libs/lua/LuaBridge/detail/LuaRef.h b/libs/lua/LuaBridge/detail/LuaRef.h index e85f670b21..60010f87da 100644 --- a/libs/lua/LuaBridge/detail/LuaRef.h +++ b/libs/lua/LuaBridge/detail/LuaRef.h @@ -62,6 +62,7 @@ private: when returning objects, to avoid an explicit temporary variable, since the destructor executes after the return statement. For example: + \code template U cast (lua_State* L) { @@ -69,6 +70,7 @@ private: ... return U (); // dtor called after this line } + \endcode @note The `StackPop` object must always be a named local variable. */ @@ -77,6 +79,7 @@ private: public: /** Create a StackPop object. + @param L the LuaState to modify @param count The number of stack entries to pop on destruction. */ StackPop (lua_State* L, int count) @@ -277,6 +280,7 @@ private: http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/e30b2664-a92d-445c-9db2-e8e0fbde2014 https://connect.microsoft.com/VisualStudio/feedback/details/771509/correct-code-doesnt-compile + \code // This code snippet fails to compile in vs2010,vs2012 struct S { template inline operator T () const { return T (); } @@ -285,6 +289,7 @@ private: S () || false; return 0; } + \endcode */ template inline operator T () const @@ -886,6 +891,7 @@ public: http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/e30b2664-a92d-445c-9db2-e8e0fbde2014 https://connect.microsoft.com/VisualStudio/feedback/details/771509/correct-code-doesnt-compile + \code // This code snippet fails to compile in vs2010,vs2012 struct S { template inline operator T () const { return T (); } @@ -894,6 +900,7 @@ public: S () || false; return 0; } + \endcode */ template inline operator T () const