diff options
Diffstat (limited to 'include/EASTL/internal/pair_fwd_decls.h')
-rw-r--r-- | include/EASTL/internal/pair_fwd_decls.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/EASTL/internal/pair_fwd_decls.h b/include/EASTL/internal/pair_fwd_decls.h new file mode 100644 index 0000000..a716482 --- /dev/null +++ b/include/EASTL/internal/pair_fwd_decls.h @@ -0,0 +1,16 @@ +///////////////////////////////////////////////////////////////////////////// +// Copyright (c) Electronic Arts Inc. All rights reserved. +///////////////////////////////////////////////////////////////////////////// + +#ifndef EASTL_PAIR_FWD_DECLS_H +#define EASTL_PAIR_FWD_DECLS_H + +#include <EASTL/internal/config.h> + +namespace eastl +{ + template <typename T1, typename T2> + struct pair; +} + +#endif // EASTL_PAIR_FWD_DECLS_H |