Skip to content

Commit

Permalink
Fix the build break caused by reverting the __callStatic feature
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewparoski authored and macvicar committed Jul 5, 2010
1 parent f77654f commit 0560449
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hphp/externals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,9 @@ Variant invoke_from_eval(const char *function, VariableEnvironment &env,
}
}

const ObjectStaticCallbacks * get_object_static_callbacks(const char *s) {
return NULL;
}

///////////////////////////////////////////////////////////////////////////////
}
3 changes: 3 additions & 0 deletions src/test/test_externals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@ Variant invoke_from_eval(const char *function, VariableEnvironment &env,
}
}

const ObjectStaticCallbacks * get_object_static_callbacks(const char *s) {
return NULL;
}

///////////////////////////////////////////////////////////////////////////////
}

0 comments on commit 0560449

Please sign in to comment.