Skip to content
Snippets Groups Projects
Commit 4db4adcd authored by Stefen Guzik's avatar Stefen Guzik
Browse files

Fix for mac g++

parent bfdb8f5d
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,8 @@ class MZoneBoundary ...@@ -206,7 +206,8 @@ class MZoneBoundary
parentFace(bFMapIt->second.parentFace), parentFace(bFMapIt->second.parentFace),
faceIndex(bFMapIt->second.faceIndex), zoneIndex(_zoneIndex) faceIndex(bFMapIt->second.faceIndex), zoneIndex(_zoneIndex)
{ } { }
private: // private: // Default constructor should be private ... but currently
// fails on some compilers (earlier versions of g++?)
// The default constructor is required by 'set_offsets()' in // The default constructor is required by 'set_offsets()' in
// class 'FaceAllocator'. This is invoked by preInit() below. // class 'FaceAllocator'. This is invoked by preInit() below.
FaceDataB(); FaceDataB();
...@@ -219,7 +220,8 @@ class MZoneBoundary ...@@ -219,7 +220,8 @@ class MZoneBoundary
ZoneData(const int _vertexIndex, const int _zoneIndex) ZoneData(const int _vertexIndex, const int _zoneIndex)
: vertexIndex(_vertexIndex), zoneIndex(_zoneIndex) : vertexIndex(_vertexIndex), zoneIndex(_zoneIndex)
{ } { }
private: // private: // Default constructor should be private ... but currently
// fails on some compilers (earlier versions of g++?)
// The default constructor is required by 'set_offsets()' in // The default constructor is required by 'set_offsets()' in
// class 'FaceAllocator'. This is invoked by preInit() below. // class 'FaceAllocator'. This is invoked by preInit() below.
ZoneData() { }; ZoneData() { };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment