Merge pull request #286 from yuriks/msvc-fix

Comment out empty arrays causing compile errors in MSVC
This commit is contained in:
bunnei 2014-12-15 22:52:35 -05:00
commit cdfa7157eb
2 changed files with 8 additions and 6 deletions

View File

@ -11,13 +11,14 @@
namespace AM_APP { namespace AM_APP {
const Interface::FunctionInfo FunctionTable[] = { // Empty arrays are illegal -- commented out until an entry is added.
}; //const Interface::FunctionInfo FunctionTable[] = { };
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class // Interface class
Interface::Interface() { Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable)); //Register(FunctionTable, ARRAY_SIZE(FunctionTable));
} }
} // namespace } // namespace

View File

@ -11,13 +11,14 @@
namespace CECD_U { namespace CECD_U {
const Interface::FunctionInfo FunctionTable[] = { // Empty arrays are illegal -- commented out until an entry is added.
}; //const Interface::FunctionInfo FunctionTable[] = { };
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class // Interface class
Interface::Interface() { Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable)); //Register(FunctionTable, ARRAY_SIZE(FunctionTable));
} }
} // namespace } // namespace