mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-07-11 01:34:17 +02:00
5c59288b39
Also c4core v0.2.0, fast-float v6.1.1.
17 lines
263 B
C++
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
|