tweak to C++ runtime; nullptr not 0

This commit is contained in:
parrt 2017-02-21 09:39:02 -08:00
parent 91df265278
commit 912342b01f
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ namespace tree {
/// </summary>
/// <returns> The default value returned by visitor methods. </returns>
virtual antlrcpp::Any defaultResult() {
return 0;
return nullptr; // support isNotNull
}
/// <summary>