Removing Jenkins warnings

This commit is contained in:
Alexander Bock
2016-02-05 23:28:45 +01:00
parent 2f7fbb1f39
commit d0f4ab6f60
7 changed files with 72 additions and 67 deletions

View File

@@ -48,15 +48,15 @@ namespace scripting {
class ScriptEngine {
public:
/**
* This structure represents a Lua library, itself consisting of a unique \m name and
* an arbitrary number of \m functions
* This structure represents a Lua library, itself consisting of a unique #name and
* an arbitrary number of #functions
*/
struct LuaLibrary {
/**
* This structure represents a Lua function with its \m name, \m function pointer
* \m argumentText describing the arguments this function takes, the \m helpText
* descripbing the function, and whether it should be shared in a parallel
* connection (\m parallelShared)
* This structure represents a Lua function with its #name, #function pointer
* #argumentText describing the arguments this function takes, the #helpText
* describing the function, and whether it should be shared in a parallel
* connection (#parallelShared)
*/
struct Function {
/// The name of the function