Free Electron
anchor.h
1 #ifndef ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
2 #define ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
3 
4 #if defined(_MSC_VER) || \
5  (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
6  (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
7 #pragma once
8 #endif
9 
10 #include <cstddef>
11 
12 namespace YAML {
13 using anchor_t = std::size_t;
14 const anchor_t NullAnchor = 0;
15 }
16 
17 #endif // ANCHOR_H_62B23520_7C8E_11DE_8A39_0800200C9A66
Definition: anchor.h:12