ae2f_docs
Atom.h
Go to the documentation of this file.
1#ifndef ae2f_Atom_h
2#define ae2f_Atom_h
3
4#include <stdatomic.h>
5
6#ifdef __cplusplus
7#include <atomic>
8#include "./Cast.h"
9#endif
10
11#define ae2f_Atom(t) ae2f_WhenC(_Atomic(t)) ae2f_WhenCXX(std::atomic<t>)
12
13#endif
#define ae2f_WhenC(...)
Appears when the current language is C++.
Definition Cxx.h:30
#define ae2f_WhenCXX(...)
Appears when the current language is C.
Definition Cxx.h:34