Files
funnygame/public/tier1/utlinitlist.h
2025-06-03 20:07:03 +03:00

18 lines
533 B
C++

#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<typename T>
using CUtlInitializerList = std::initializer_list<T>;
#endif