Give @briefs to all namespaces.

This will force recompilation of all files.
This commit is contained in:
Jason Felds
2011-02-19 12:09:03 -05:00
parent ffebd5010f
commit 1a1ff7d701
41 changed files with 91 additions and 75 deletions
+8 -1
View File
@@ -207,7 +207,14 @@ public:
bool operator != ( const T &other ) const { return val != other; }
};
namespace LuaHelpers { template<class T> void Push( lua_State *L, const BroadcastOnChange<T> &Object ) { LuaHelpers::Push<T>( L, Object.Get() ); } }
/** @brief Utilities for working with Lua. */
namespace LuaHelpers
{
template<class T> void Push( lua_State *L, const BroadcastOnChange<T> &Object )
{
LuaHelpers::Push<T>( L, Object.Get() );
}
}
template<class T, int N>
class BroadcastOnChange1D