Duckstation/dep/rapidyaml/src/c4/language.cpp
2024-02-04 16:14:05 +10:00

17 lines
263 B
C++

#include "c4/language.hpp"
namespace c4 {
namespace detail {
#ifndef __GNUC__
void use_char_pointer(char const volatile* v)
{
C4_UNUSED(v);
}
#else
void foo() {} // to avoid empty file warning from the linker
#endif
} // namespace detail
} // namespace c4