Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
OpenMesh
Commits
e2c078a8
Commit
e2c078a8
authored
Oct 18, 2016
by
Jan Möbius
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixNdebug' into 'master'
added missing ifdef for debug See merge request
!94
parents
c70cdc21
e11f553c
Pipeline
#3124
passed with stage
in 35 minutes and 30 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/OpenMesh/Core/IO/OMFormat.hh
src/OpenMesh/Core/IO/OMFormat.hh
+4
-0
No files found.
src/OpenMesh/Core/IO/OMFormat.hh
View file @
e2c078a8
...
...
@@ -399,7 +399,9 @@ namespace OMFormat {
template
<
typename
T
>
Chunk
::
Integer_Size
integer_size
(
const
T
&
d
)
#endif
{
#ifndef NDEBUG
assert
(
is_integer
(
d
)
);
#endif
switch
(
sizeof
(
T
)
)
{
...
...
@@ -423,7 +425,9 @@ namespace OMFormat {
template
<
typename
T
>
Chunk
::
Float_Size
float_size
(
const
T
&
d
)
#endif
{
#ifndef NDEBUG
assert
(
is_float
(
d
)
);
#endif
switch
(
sizeof
(
T
)
)
{
...
...
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