Browse Source

Guard C++/CLI specific code in CppSharp.c.

pull/1301/head
João Matos 6 years ago committed by João Matos
parent
commit
174ca98d1b
  1. 4
      include/CppSharp.h

4
include/CppSharp.h

@ -8,6 +8,8 @@
// ------------------------------------------------------------------------------------------- // // ------------------------------------------------------------------------------------------- //
#pragma once #pragma once
#if defined(__cplusplus_cli)
#include <string> #include <string>
#include <ostream> #include <ostream>
#include <vcclr.h> #include <vcclr.h>
@ -291,3 +293,5 @@ namespace msclr {
}; };
} }
} // namespace msclr } // namespace msclr
#endif

Loading…
Cancel
Save