Started work on build system
This commit is contained in:
19
public/tier1/utlinitlist.h
Normal file
19
public/tier1/utlinitlist.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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 "unban_std.h"
|
||||
|
||||
#include "initializer_list"
|
||||
template<typename T>
|
||||
using CUtlInitializerList = std::initializer_list<T>;
|
||||
|
||||
#include "ban_std.h"
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user