Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
stenzek
GitHub Repository: stenzek/duckstation
Path: blob/master/dep/rapidyaml/src/c4/language.cpp
4260 views
1
#include "c4/language.hpp"
2
3
namespace c4 {
4
namespace detail {
5
6
#ifndef __GNUC__
7
void use_char_pointer(char const volatile* v)
8
{
9
C4_UNUSED(v);
10
}
11
#else
12
void foo() {} // to avoid empty file warning from the linker
13
#endif
14
15
} // namespace detail
16
} // namespace c4
17
18