Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nvse/nvse/ScriptUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ class ExpressionParser
~ExpressionParser();

bool ParseArgs(ParamInfo* params, UInt32 numParams, bool bUsesNVSEParamTypes = true, bool parseWholeLine = true);
static [[nodiscard]] bool ValidateArgType(ParamType paramType, Token_Type argType, bool bIsNVSEParam, CommandInfo* cmdInfo);
[[nodiscard]] static bool ValidateArgType(ParamType paramType, Token_Type argType, bool bIsNVSEParam, CommandInfo* cmdInfo);
bool GetUserFunctionParams(const std::vector<std::string>& paramNames, std::vector<UserFunctionParam>& outParams,
Script::VarInfoList* varList, const std::string& fullScriptText, Script* script) const;
bool ParseUserFunctionParameters(std::vector<UserFunctionParam>& out, const std::string& funcScriptText,
Expand Down
Loading