Declare C4AulBCC as class instead of struct

The C++ standard says that it doesn't matter whether you forward declare
something as struct or class and then define it using the other keyword.
Unfortunately MSVC adds those keywords to its name mangling scheme,
which breaks things.
directional-lights
Nicolas Hake 2016-04-29 12:43:33 +02:00
parent 042e3c9602
commit 86729ea536
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
// class declarations
class C4AbstractApp;
class C4Action;
struct C4AulBCC;
class C4AulBCC;
class C4AulDefFunc;
class C4AulExec;
class C4AulFunc;