mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-26 23:59:30 +00:00
Merge pull request #1015 from Azaezel/alpha41/consoleCleanups
fix warn reports for buffer over-runs
This commit is contained in:
commit
0d981b62cf
11 changed files with 93 additions and 74 deletions
|
|
@ -352,8 +352,8 @@ class Journal
|
|||
|
||||
template<typename T>
|
||||
struct MethodRep: public FuncDecl {
|
||||
typename T::ObjPtr obj;
|
||||
typename T::MethodPtr method;
|
||||
typename T::ObjPtr obj = NULL;
|
||||
typename T::MethodPtr method = NULL;
|
||||
virtual bool match(VoidPtr ptr,VoidMethod func) const {
|
||||
return obj == (typename T::ObjPtr)ptr && method == (typename T::MethodPtr)func;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue