Skip to content

Commit

Permalink
Use nullptr for default arg on review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
spathiwa authored and cglzaguilar committed Jan 22, 2019
1 parent 8293d1b commit e01c218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/core/TDCodecVia.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ TypeRef TDViaParser::ParseDefaultValue(Boolean mutableValue)
return cdt;
}
//------------------------------------------------------------
Boolean TDViaParser::PreParseElements(Int32 rank, ArrayDimensionVector dimensionLengths, Int32 *reachedDepth /*= NULL*/)
Boolean TDViaParser::PreParseElements(Int32 rank, ArrayDimensionVector dimensionLengths, Int32 *reachedDepth /*= nullptr*/)
{
SubString token;
SubString tempString(_string);
Expand Down
2 changes: 1 addition & 1 deletion source/include/TDCodecVia.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class TDViaParser
Boolean EatJSONPath(SubString* path);
NIError ParseREPL();
TypeRef ParseEnqueue();
Boolean PreParseElements(Int32 rank, ArrayDimensionVector dimensionLengths, Int32 *reachedDepth = NULL);
Boolean PreParseElements(Int32 rank, ArrayDimensionVector dimensionLengths, Int32 *reachedDepth = nullptr);
TokenTraits ReadArrayItem(SubString* input, SubString* token, Boolean topLevel, Boolean suppressInfNaN);
Int32 ParseArrayData(TypedArrayCoreRef pArray, void* pFirstEltInSlice, Int32 level);
void ParseVirtualInstrument(TypeRef viType, void* pData);
Expand Down

0 comments on commit e01c218

Please sign in to comment.