Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Merlin Marek
assimp-lean
Commits
3aa1c5d3
Commit
3aa1c5d3
authored
Nov 14, 2017
by
Philip Trettner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a MSVC17 compile error
parent
35ae5904
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
code/X3DImporter.cpp
code/X3DImporter.cpp
+2
-2
No files found.
code/X3DImporter.cpp
View file @
3aa1c5d3
...
...
@@ -95,8 +95,8 @@ struct WordIterator: public std::iterator<std::input_iterator_tag, const char*>
end_
=
other
.
end_
;
return
*
this
;
}
bool
operator
==
(
WordIterator
&
other
)
const
{
return
start_
==
other
.
start_
;
}
bool
operator
!=
(
WordIterator
&
other
)
const
{
return
start_
!=
other
.
start_
;
}
bool
operator
==
(
const
WordIterator
&
other
)
const
{
return
start_
==
other
.
start_
;
}
bool
operator
!=
(
const
WordIterator
&
other
)
const
{
return
start_
!=
other
.
start_
;
}
WordIterator
&
operator
++
()
{
start_
+=
strcspn
(
start_
,
whitespace
);
start_
+=
strspn
(
start_
,
whitespace
);
...
...
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