mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00
Replace zeroes and nulls by nullptrs
This commit is contained in:
parent
86fad60c7d
commit
8084a336b5
183 changed files with 483 additions and 483 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace Interpreter
|
||||
{
|
||||
Runtime::Runtime() : mContext (0), mCode (0), mCodeSize(0), mPC (0) {}
|
||||
Runtime::Runtime() : mContext (nullptr), mCode (nullptr), mCodeSize(0), mPC (0) {}
|
||||
|
||||
int Runtime::getPC() const
|
||||
{
|
||||
|
@ -65,8 +65,8 @@ namespace Interpreter
|
|||
|
||||
void Runtime::clear()
|
||||
{
|
||||
mContext = 0;
|
||||
mCode = 0;
|
||||
mContext = nullptr;
|
||||
mCode = nullptr;
|
||||
mCodeSize = 0;
|
||||
mStack.clear();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue