forked from mia/Aegisub
Use nullptr
This commit is contained in:
parent
d0603fde88
commit
e7734e642d
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ namespace Automation4 {
|
|||
/// makes a Lua representation of AssEntry and places on the top of the stack
|
||||
void AssEntryToLua(lua_State *L, size_t idx);
|
||||
/// assumes a Lua representation of AssEntry on the top of the stack, and creates an AssEntry object of it
|
||||
static std::unique_ptr<AssEntry> LuaToAssEntry(lua_State *L, AssFile *ass=0);
|
||||
static std::unique_ptr<AssEntry> LuaToAssEntry(lua_State *L, AssFile *ass=nullptr);
|
||||
|
||||
/// @brief Signal that the script using this file is now done running
|
||||
/// @param set_undo If there's any uncommitted changes to the file,
|
||||
|
|
Loading…
Reference in a new issue