Fixed explicit making cppcheck fail and some lineendings
This commit is contained in:
@@ -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; }
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -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_;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
@@ -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() {}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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); }
|
||||||
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
|||||||
@@ -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:
|
|||||||
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,
|
||||||
|
|||||||
@@ -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() {}
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user