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
11
Issues
11
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
b85b66d6
Commit
b85b66d6
authored
Aug 15, 2019
by
Nicolas Gallego-Ortiz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lowercase filename, pragma once and property specializations corrected
parent
6bb9f668
Pipeline
#11756
passed with stage
in 65 minutes and 39 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
src/OpenMesh/Core/Utils/Property.hh
src/OpenMesh/Core/Utils/Property.hh
+2
-2
src/OpenMesh/Core/Utils/PropertyContainer.hh
src/OpenMesh/Core/Utils/PropertyContainer.hh
+1
-1
src/OpenMesh/Core/Utils/typename.hh
src/OpenMesh/Core/Utils/typename.hh
+1
-4
No files found.
src/OpenMesh/Core/Utils/Property.hh
View file @
b85b66d6
...
...
@@ -396,8 +396,8 @@ public:
public:
explicit
PropertyT
(
const
std
::
string
&
_name
=
"<unknown>"
)
:
BaseProperty
(
_name
)
explicit
PropertyT
(
const
std
::
string
&
_name
=
"<unknown>"
,
const
std
::
string
&
_internal_type_name
=
""
)
:
BaseProperty
(
_name
,
_internal_type_name
)
{
}
public:
// inherited from BaseProperty
...
...
src/OpenMesh/Core/Utils/PropertyContainer.hh
View file @
b85b66d6
...
...
@@ -45,7 +45,7 @@
#define OPENMESH_PROPERTYCONTAINER
#include <OpenMesh/Core/Utils/Property.hh>
#include <OpenMesh/Core/Utils/
TypeN
ame.hh>
#include <OpenMesh/Core/Utils/
typen
ame.hh>
//-----------------------------------------------------------------------------
namespace
OpenMesh
...
...
src/OpenMesh/Core/Utils/typename.hh
View file @
b85b66d6
#ifndef TYPENAME_HH
#define TYPENAME_HH
#pragma once
/// Get an internal name for a type
/// Important, this is depends on compilers and versions, do NOT se in file formats!
...
...
@@ -25,5 +24,3 @@ std::string get_type_name()
}
}
#endif // TYPENAME_HH
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