[nostalgia/core] Replace old namespace nesting with C++17 nesting

This commit is contained in:
2019-03-28 06:24:20 -05:00
parent 2830eb76b6
commit 941d714630
17 changed files with 17 additions and 52 deletions
+1 -3
View File
@@ -11,12 +11,10 @@
#include "../media.hpp"
namespace nostalgia {
namespace core {
namespace nostalgia::core {
uint8_t *loadRom(const char*) {
return nullptr;
}
}
}
+1 -3
View File
@@ -6,11 +6,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
namespace nostalgia {
namespace core {
namespace nostalgia::core {
void initHeap() {
}
}
}