Artifact 226a71c6e6c9468f0efd8c5f59aaf14365e537790f65a33e8b2a7f080a985b3b:
- File bs/builtins/types/runtime/runtime.h — part of check-in [eade11527c] at 2019-07-15 21:58:00 on branch trunk — builtins: added definitions for runtime array type. (user: achavasse size: 408)
#ifndef EMPATHY_BUILTINS_TYPES_RUNTIME_H #define EMPATHY_BUILTINS_TYPES_RUNTIME_H #include "basic.h" #include "pointer.h" #include "array.h" namespace empathy::builtins { extern void SetupRuntimeBasicTypes( Env& e ); static inline void SetupRuntimeTypes( Env& e ) { SetupRuntimeBasicTypes( e ); SetupRuntimePointerType( e ); SetupRuntimeArrayType( e ); } } #endif