mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-20 23:35:39 +00:00
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
|