Browse Source

Script: Add missing macro CONCAT

master
Riyyi 4 months ago
parent
commit
6e5f82913e
  1. 4
      src/inferno/script/nativescript.h

4
src/inferno/script/nativescript.h

@ -65,6 +65,10 @@ private:
} // namespace Inferno
// TODO: Move this to ruc
#define CONCAT(a, b) CONCAT_IMPL(a, b)
#define CONCAT_IMPL(a, b) a##b
#define BIND_NATIVE_IMPL(name, struct_name) \
struct struct_name { \
struct_name() \

Loading…
Cancel
Save