mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
More cats and cpys in files that xcode doesn't see
This commit is contained in:
parent
25c25b20b1
commit
963333c583
21 changed files with 43 additions and 43 deletions
|
|
@ -99,8 +99,8 @@ DefineConsoleFunction( runAllUnitTests, int, (const char* testSpecs), (""),
|
|||
testArgc = 2;
|
||||
testArgv = new char*[2];
|
||||
testArgv[0] = NULL; // Program name is unused by googletest.
|
||||
testArgv[1] = new char[specs.length()+1];
|
||||
dStrcpy(testArgv[1], specs);
|
||||
testArgv[1] = new char[specs.size()];
|
||||
dStrcpy(testArgv[1], specs, specs.size());
|
||||
}
|
||||
|
||||
// Initialize Google Test.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue