Merge branch 'Fix_cppcheck' into 'master'
Fixed explicit making cppcheck fail and some lineendings See merge request !123
This commit is contained in:
@@ -85,7 +85,7 @@ class SoOpenMeshNodeT : public SoShape
|
||||
public:
|
||||
|
||||
static void initClass();
|
||||
SoOpenMeshNodeT(const Mesh* _mesh=0);
|
||||
explicit SoOpenMeshNodeT(const Mesh* _mesh=0);
|
||||
void setMesh(const Mesh* mesh) { d_mesh = mesh; }
|
||||
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@ template <class T>
|
||||
class multiplex_target : public basic_multiplex_target
|
||||
{
|
||||
public:
|
||||
multiplex_target(T& _t) : target_(_t) {}
|
||||
explicit multiplex_target(T& _t) : target_(_t) {}
|
||||
virtual void operator<<(const std::string& _s) { target_ << _s; }
|
||||
private:
|
||||
T& target_;
|
||||
|
||||
@@ -90,7 +90,7 @@ public:
|
||||
*
|
||||
* @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
|
||||
double getRand() const;
|
||||
|
||||
@@ -87,7 +87,7 @@ public:
|
||||
*
|
||||
* @param _notificationInterval Interval of decimation steps between notifications.
|
||||
*/
|
||||
Observer(size_t _notificationInterval);
|
||||
explicit Observer(size_t _notificationInterval);
|
||||
|
||||
/// Destructor
|
||||
virtual ~Observer();
|
||||
|
||||
@@ -115,7 +115,7 @@ public:
|
||||
CatmullClarkT( ) : parent_t() { }
|
||||
|
||||
/// Constructor
|
||||
CatmullClarkT(MeshType &_m) : parent_t(_m) { }
|
||||
explicit CatmullClarkT(MeshType &_m) : parent_t(_m) { }
|
||||
|
||||
virtual ~CatmullClarkT() {}
|
||||
|
||||
|
||||
@@ -102,7 +102,7 @@ public:
|
||||
public:
|
||||
|
||||
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() { }
|
||||
|
||||
public: // inherited interface
|
||||
|
||||
@@ -107,7 +107,7 @@ public:
|
||||
|
||||
/// Constructor to be used with interface 1 (calls attach())
|
||||
/// \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
|
||||
{
|
||||
public:
|
||||
GnuplotException(const string &msg) : runtime_error(msg){}
|
||||
explicit GnuplotException(const string &msg) : runtime_error(msg){}
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -113,7 +113,7 @@ public:
|
||||
Gnuplot();
|
||||
|
||||
/// Set a style during construction.
|
||||
Gnuplot(const string & _style);
|
||||
explicit Gnuplot(const string & _style);
|
||||
|
||||
/// Constructor calling plot_xy().
|
||||
Gnuplot(const string & _title,
|
||||
|
||||
@@ -80,7 +80,7 @@ class MeshCheckerT
|
||||
public:
|
||||
|
||||
/// constructor
|
||||
MeshCheckerT(const Mesh& _mesh) : mesh_(_mesh) {}
|
||||
explicit MeshCheckerT(const Mesh& _mesh) : mesh_(_mesh) {}
|
||||
|
||||
/// destructor
|
||||
~MeshCheckerT() {}
|
||||
|
||||
@@ -89,7 +89,7 @@ public:
|
||||
VHierarchyNodeIndex()
|
||||
{ value_ = 0; }
|
||||
|
||||
VHierarchyNodeIndex(unsigned int _value)
|
||||
explicit VHierarchyNodeIndex(unsigned int _value)
|
||||
{ value_ = _value; }
|
||||
|
||||
VHierarchyNodeIndex(const VHierarchyNodeIndex &_other)
|
||||
|
||||
Reference in New Issue
Block a user