#ifndef TIER1_UTL_INITIALIZER_LIST_H #define TIER1_UTL_INITIALIZER_LIST_H //----------------------------------------------------------------------------- // C++ only supports std::initializer_list. Because of that we are dependent // on libc++. That's why I banned usage of the std. // // fuck C++ once // fuck C++ twice // fuck C++ thrice //----------------------------------------------------------------------------- #include "initializer_list" template using CUtlInitializerList = std::initializer_list; #endif