1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 15:15:31 +00:00

Simplified documentation a bit

This commit is contained in:
Thomas 2014-05-13 14:13:05 -04:00
parent d6d4d9f75d
commit 085fb2c5a2
2 changed files with 2 additions and 5 deletions

View file

@ -98,10 +98,8 @@ namespace Compiler
int parseArguments (const std::string& arguments, Scanner& scanner, int parseArguments (const std::string& arguments, Scanner& scanner,
std::vector<Interpreter::Type_Code>& code, bool invert = false); std::vector<Interpreter::Type_Code>& code, bool invert = false);
///< Parse sequence of arguments specified by \a arguments. ///< Parse sequence of arguments specified by \a arguments.
/// \param arguments Each character represents one arguments ('l': integer, /// \param arguments Uses ScriptArgs typedef
/// 'f': float, 'S': string, 'c': string (case smashed), '/': following arguments are /// \see Compiler::ScriptArgs
/// optional)
/// 'x': optional string that will be ignored (die in a fire, MW script compiler!)
/// \param invert Store arguments in reverted order. /// \param invert Store arguments in reverted order.
/// \return number of optional arguments /// \return number of optional arguments
}; };

View file

@ -21,7 +21,6 @@ namespace Compiler
s - Short <BR> s - Short <BR>
S - String, case preserved <BR> S - String, case preserved <BR>
x - Optional, ignored argument x - Optional, ignored argument
\see Compiler::ExprParser::parseArguments
**/ **/
typedef std::string ScriptArgs; typedef std::string ScriptArgs;