Moves H5PacketTable default ctor inside source file (#731)
This commit is contained in:
@@ -28,6 +28,13 @@
|
||||
/* PacketTable superclass */
|
||||
/********************************/
|
||||
|
||||
/* Null constructor
|
||||
* Sets table_id to "invalid"
|
||||
*/
|
||||
PacketTable::PacketTable() : table_id{H5I_INVALID_HID}
|
||||
{
|
||||
}
|
||||
|
||||
/* "Open" Constructor
|
||||
* Opens an existing packet table, which can contain either fixed-length or
|
||||
* variable-length packets.
|
||||
|
||||
@@ -31,11 +31,9 @@
|
||||
class H5_HLCPPDLL PacketTable {
|
||||
public:
|
||||
/* Null constructor
|
||||
* Sets table_id to "invalid"
|
||||
* Sets table_id to H5I_INVALID_HID
|
||||
*/
|
||||
PacketTable() : table_id{H5I_INVALID_HID}
|
||||
{
|
||||
}
|
||||
PacketTable();
|
||||
|
||||
/* "Open" Constructor
|
||||
* Opens an existing packet table, which can contain either fixed-length or
|
||||
|
||||
Reference in New Issue
Block a user