NewLang Project
Yet another programm language
Loading...
Searching...
No Matches
warning_pop.h
Go to the documentation of this file.
1#pragma once
2
3#if __clang__
4
5#pragma clang attribute pop
6
7#elif __GNUC__
8
9#pragma GCC diagnostic pop
10
11#elif _MSC_VER
12
13#pragma warning(pop)
14
15#endif