duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

language.cpp (263B)


      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