Skip to content
Snippets Groups Projects
Commit 87679d71 authored by Marcus D. Hanwell's avatar Marcus D. Hanwell
Browse files

COMP: No stdint.h on Visual Studio.

Change-Id: Ib54195d356e5929b19a0ad2026b0036d5c4bfc25
parent d8911269
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,9 @@ ...@@ -31,7 +31,9 @@
// The embedded fonts // The embedded fonts
#include "fonts/vtkEmbeddedFonts.h" #include "fonts/vtkEmbeddedFonts.h"
#include <stdint.h> #ifndef _MSC_VER
# include <stdint.h>
#endif
#ifdef FTGL_USE_NAMESPACE #ifdef FTGL_USE_NAMESPACE
using namespace ftgl; using namespace ftgl;
......
...@@ -31,7 +31,9 @@ ...@@ -31,7 +31,9 @@
#include "fonts/vtkEmbeddedFonts.h" #include "fonts/vtkEmbeddedFonts.h"
#include <sys/stat.h> #include <sys/stat.h>
#include <stdint.h> #ifndef _MSC_VER
# include <stdint.h>
#endif
#ifdef FTGL_USE_NAMESPACE #ifdef FTGL_USE_NAMESPACE
using namespace ftgl; using namespace ftgl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment