Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ACGL
acgl
Commits
d4b8a970
Commit
d4b8a970
authored
Apr 09, 2013
by
Robert Menzel
Browse files
fixed clang compile issue
parent
f16f84a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ACGL/OpenGL/Data/TextureDataLoadStore.cc
View file @
d4b8a970
...
...
@@ -326,7 +326,7 @@ std::istream& loadTextureDataFromPNM_filterPNMComments(std::istream& _in)
SharedTextureData
loadTextureDataFromPNM
(
const
std
::
string
&
_filename
)
{
std
::
ifstream
fileStream
(
_filename
,
std
::
ifstream
::
in
);
std
::
ifstream
fileStream
(
_filename
.
c_str
()
);
if
(
!
fileStream
.
good
())
{
error
()
<<
"could not open file "
<<
_filename
<<
std
::
endl
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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