Skip to content
Snippets Groups Projects
Commit 082bf803 authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

Comment out empty arrays causing compile errors in MSVC

parent cd2a31ea
No related branches found
No related tags found
No related merge requests found
......@@ -11,13 +11,14 @@
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::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
//Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace
......@@ -11,13 +11,14 @@
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::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
//Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment