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
Sreekanth Arikatla
iMSTK
Commits
159badd2
Commit
159badd2
authored
Jun 16, 2021
by
Harald Scheirich
Browse files
BUG: fix Linux build failure for debug mode
parent
98da5328
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/MeshIO/imstkMeshIO.cpp
View file @
159badd2
...
...
@@ -136,7 +136,7 @@ MeshIO::getFileType(const std::string& filePath)
// To lowercase
std
::
transform
(
extString
.
begin
(),
extString
.
end
(),
extString
.
begin
(),
[](
unsigned
char
c
)
{
return
std
::
tolower
(
c
);
});
[](
unsigned
char
c
)
{
return
static_cast
<
unsigned
char
>
(
std
::
tolower
(
c
)
)
;
});
if
(
extToType
.
count
(
extString
)
==
0
)
{
...
...
Write
Preview
Markdown
is supported
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