Goose  Artifact [790c99f4cc]

Artifact 790c99f4ccf08b5247f2b64cf3ffb011048f5c2ec1cdfa23690fc00eae720956:

  • File bs/builtins/types/runtime/runtime.h — part of check-in [54b8960363] at 2019-07-15 20:21:07 on branch trunk — builtins: added definitions for basic runtime types. (user: achavasse size: 294)

#ifndef EMPATHY_BUILTINS_TYPES_RUNTIME_H
#define EMPATHY_BUILTINS_TYPES_RUNTIME_H

#include "basic.h"

namespace empathy::builtins
{
    extern void SetupRuntimeBasicTypes( Env& e );

    static inline void SetupRuntimeTypes( Env& e )
    {
        SetupRuntimeBasicTypes( e );
    }
}

#endif