Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bill Lorensen
VTK
Commits
b649c55c
Commit
b649c55c
authored
Apr 05, 2012
by
Marcus D. Hanwell
Browse files
COMP: Fix compilation failures with GCC 4.7.
It seems that intptr_t has moved into stdint.h. Change-Id: I
87679d71
parent
8b3d93bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Rendering/vtkFreeTypeTools.cxx
View file @
b649c55c
...
...
@@ -31,6 +31,10 @@
// The embedded fonts
#include "fonts/vtkEmbeddedFonts.h"
#ifndef _MSC_VER
# include <stdint.h>
#endif
#ifdef FTGL_USE_NAMESPACE
using
namespace
ftgl
;
#endif
...
...
Rendering/vtkFreeTypeUtilities.cxx
View file @
b649c55c
...
...
@@ -31,6 +31,9 @@
#include "fonts/vtkEmbeddedFonts.h"
#include <sys/stat.h>
#ifndef _MSC_VER
# include <stdint.h>
#endif
#ifdef FTGL_USE_NAMESPACE
using
namespace
ftgl
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment