summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c++/src/H5PredType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5PredType.h b/c++/src/H5PredType.h
index d75cdcc..7742c90 100644
--- a/c++/src/H5PredType.h
+++ b/c++/src/H5PredType.h
@@ -31,6 +31,9 @@ class H5_DLLCPP PredType : public AtomType {
// id in the left hand side object.
PredType& operator=( const PredType& rhs );
+ // Copy constructor - makes copy of the original object
+ PredType( const PredType& original );
+
// Returns the HDF5 predefined type id.
virtual hid_t getId() const;
@@ -244,9 +247,6 @@ class H5_DLLCPP PredType : public AtomType {
// Creates a pre-defined type using an HDF5 pre-defined constant
PredType( const hid_t predtype_id ); // used by the library only
- // Copy constructor - makes copy of the original object
- PredType( const PredType& original );
-
#endif // DOXYGEN_SHOULD_SKIP_THIS
};