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
25178d9d
Commit
25178d9d
authored
Feb 02, 2017
by
Jan Möbius
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed explicit making cppcheck fail and some lineendings
parent
5b9326a0
Pipeline
#4217
failed with stage
in 44 minutes and 40 seconds
Changes
10
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
315 additions
and
315 deletions
+315
-315
src/OpenMesh/Apps/Unsupported/IvViewer/SoOpenMeshNodeT.hh
src/OpenMesh/Apps/Unsupported/IvViewer/SoOpenMeshNodeT.hh
+1
-1
src/OpenMesh/Core/System/mostream.hh
src/OpenMesh/Core/System/mostream.hh
+1
-1
src/OpenMesh/Core/Utils/RandomNumberGenerator.hh
src/OpenMesh/Core/Utils/RandomNumberGenerator.hh
+1
-1
src/OpenMesh/Tools/Decimater/Observer.hh
src/OpenMesh/Tools/Decimater/Observer.hh
+1
-1
src/OpenMesh/Tools/Subdivider/Uniform/CatmullClarkT.hh
src/OpenMesh/Tools/Subdivider/Uniform/CatmullClarkT.hh
+1
-1
src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.hh
...OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.hh
+212
-212
src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh
src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh
+1
-1
src/OpenMesh/Tools/Utils/Gnuplot.hh
src/OpenMesh/Tools/Utils/Gnuplot.hh
+2
-2
src/OpenMesh/Tools/Utils/MeshCheckerT.hh
src/OpenMesh/Tools/Utils/MeshCheckerT.hh
+1
-1
src/OpenMesh/Tools/VDPM/VHierarchyNodeIndex.hh
src/OpenMesh/Tools/VDPM/VHierarchyNodeIndex.hh
+94
-94
No files found.
src/OpenMesh/Apps/Unsupported/IvViewer/SoOpenMeshNodeT.hh
View file @
25178d9d
...
@@ -85,7 +85,7 @@ class SoOpenMeshNodeT : public SoShape
...
@@ -85,7 +85,7 @@ class SoOpenMeshNodeT : public SoShape
public:
public:
static
void
initClass
();
static
void
initClass
();
SoOpenMeshNodeT
(
const
Mesh
*
_mesh
=
0
);
explicit
SoOpenMeshNodeT
(
const
Mesh
*
_mesh
=
0
);
void
setMesh
(
const
Mesh
*
mesh
)
{
d_mesh
=
mesh
;
}
void
setMesh
(
const
Mesh
*
mesh
)
{
d_mesh
=
mesh
;
}
...
...
src/OpenMesh/Core/System/mostream.hh
View file @
25178d9d
...
@@ -96,7 +96,7 @@ template <class T>
...
@@ -96,7 +96,7 @@ template <class T>
class
multiplex_target
:
public
basic_multiplex_target
class
multiplex_target
:
public
basic_multiplex_target
{
{
public:
public:
multiplex_target
(
T
&
_t
)
:
target_
(
_t
)
{}
explicit
multiplex_target
(
T
&
_t
)
:
target_
(
_t
)
{}
virtual
void
operator
<<
(
const
std
::
string
&
_s
)
{
target_
<<
_s
;
}
virtual
void
operator
<<
(
const
std
::
string
&
_s
)
{
target_
<<
_s
;
}
private:
private:
T
&
target_
;
T
&
target_
;
...
...
src/OpenMesh/Core/Utils/RandomNumberGenerator.hh
View file @
25178d9d
...
@@ -90,7 +90,7 @@ public:
...
@@ -90,7 +90,7 @@ public:
*
*
* @param _resolution specifies the desired resolution for the random number generated
* @param _resolution specifies the desired resolution for the random number generated
*/
*/
RandomNumberGenerator
(
const
size_t
_resolution
);
explicit
RandomNumberGenerator
(
const
size_t
_resolution
);
/// returns a random double between 0.0 and 1.0 with a guaranteed resolution
/// returns a random double between 0.0 and 1.0 with a guaranteed resolution
double
getRand
()
const
;
double
getRand
()
const
;
...
...
src/OpenMesh/Tools/Decimater/Observer.hh
View file @
25178d9d
...
@@ -87,7 +87,7 @@ public:
...
@@ -87,7 +87,7 @@ public:
*
*
* @param _notificationInterval Interval of decimation steps between notifications.
* @param _notificationInterval Interval of decimation steps between notifications.
*/
*/
Observer
(
size_t
_notificationInterval
);
explicit
Observer
(
size_t
_notificationInterval
);
/// Destructor
/// Destructor
virtual
~
Observer
();
virtual
~
Observer
();
...
...
src/OpenMesh/Tools/Subdivider/Uniform/CatmullClarkT.hh
View file @
25178d9d
...
@@ -115,7 +115,7 @@ public:
...
@@ -115,7 +115,7 @@ public:
CatmullClarkT
(
)
:
parent_t
()
{
}
CatmullClarkT
(
)
:
parent_t
()
{
}
/// Constructor
/// Constructor
CatmullClarkT
(
MeshType
&
_m
)
:
parent_t
(
_m
)
{
}
explicit
CatmullClarkT
(
MeshType
&
_m
)
:
parent_t
(
_m
)
{
}
virtual
~
CatmullClarkT
()
{}
virtual
~
CatmullClarkT
()
{}
...
...
src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.hh
View file @
25178d9d
...
@@ -102,7 +102,7 @@ public:
...
@@ -102,7 +102,7 @@ public:
public:
public:
CompositeT
(
void
)
:
parent_t
(),
p_mesh_
(
NULL
)
{}
CompositeT
(
void
)
:
parent_t
(),
p_mesh_
(
NULL
)
{}
CompositeT
(
MeshType
&
_mesh
)
:
parent_t
(
_mesh
),
p_mesh_
(
NULL
)
{};
explicit
CompositeT
(
MeshType
&
_mesh
)
:
parent_t
(
_mesh
),
p_mesh_
(
NULL
)
{};
virtual
~
CompositeT
()
{
}
virtual
~
CompositeT
()
{
}
public:
// inherited interface
public:
// inherited interface
...
...
src/OpenMesh/Tools/Subdivider/Uniform/SubdividerT.hh
View file @
25178d9d
...
@@ -107,7 +107,7 @@ public:
...
@@ -107,7 +107,7 @@ public:
/// Constructor to be used with interface 1 (calls attach())
/// Constructor to be used with interface 1 (calls attach())
/// \see operator()( MeshType&, size_t )
/// \see operator()( MeshType&, size_t )
SubdividerT
(
MeshType
&
_m
)
:
attached_
(
NULL
)
{
attach
(
_m
);
}
explicit
SubdividerT
(
MeshType
&
_m
)
:
attached_
(
NULL
)
{
attach
(
_m
);
}
//@}
//@}
...
...
src/OpenMesh/Tools/Utils/Gnuplot.hh
View file @
25178d9d
...
@@ -74,7 +74,7 @@ using namespace std;
...
@@ -74,7 +74,7 @@ using namespace std;
class
GnuplotException
:
public
runtime_error
class
GnuplotException
:
public
runtime_error
{
{
public:
public:
GnuplotException
(
const
string
&
msg
)
:
runtime_error
(
msg
){}
explicit
GnuplotException
(
const
string
&
msg
)
:
runtime_error
(
msg
){}
};
};
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
...
@@ -113,7 +113,7 @@ public:
...
@@ -113,7 +113,7 @@ public:
Gnuplot
();
Gnuplot
();
/// Set a style during construction.
/// Set a style during construction.
Gnuplot
(
const
string
&
_style
);
explicit
Gnuplot
(
const
string
&
_style
);
/// Constructor calling plot_xy().
/// Constructor calling plot_xy().
Gnuplot
(
const
string
&
_title
,
Gnuplot
(
const
string
&
_title
,
...
...
src/OpenMesh/Tools/Utils/MeshCheckerT.hh
View file @
25178d9d
...
@@ -80,7 +80,7 @@ class MeshCheckerT
...
@@ -80,7 +80,7 @@ class MeshCheckerT
public:
public:
/// constructor
/// constructor
MeshCheckerT
(
const
Mesh
&
_mesh
)
:
mesh_
(
_mesh
)
{}
explicit
MeshCheckerT
(
const
Mesh
&
_mesh
)
:
mesh_
(
_mesh
)
{}
/// destructor
/// destructor
~
MeshCheckerT
()
{}
~
MeshCheckerT
()
{}
...
...
src/OpenMesh/Tools/VDPM/VHierarchyNodeIndex.hh
View file @
25178d9d
...
@@ -89,7 +89,7 @@ public:
...
@@ -89,7 +89,7 @@ public:
VHierarchyNodeIndex
()
VHierarchyNodeIndex
()
{
value_
=
0
;
}
{
value_
=
0
;
}
VHierarchyNodeIndex
(
unsigned
int
_value
)
explicit
VHierarchyNodeIndex
(
unsigned
int
_value
)
{
value_
=
_value
;
}
{
value_
=
_value
;
}
VHierarchyNodeIndex
(
const
VHierarchyNodeIndex
&
_other
)
VHierarchyNodeIndex
(
const
VHierarchyNodeIndex
&
_other
)
...
...
Jan Möbius
@moebius
mentioned in commit
fd5b60fc
·
Feb 06, 2017
mentioned in commit
fd5b60fc
mentioned in commit fd5b60fcba25ad1db26adcc1c21e0fb5441d73ac
Toggle commit list
Jan Möbius
@moebius
mentioned in merge request
!123 (merged)
·
Feb 06, 2017
mentioned in merge request
!123 (merged)
mentioned in merge request !123
Toggle commit list
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