Skip to content

Commit 52c7b9a

Browse files
committed
pedantic fixes
Signed-off-by: Nick Avramoussis <[email protected]>
1 parent ee4f8fa commit 52c7b9a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

openvdb/openvdb/math/Maps.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ inline std::mutex& GetMapRegistryMutex()
1414
{
1515
static std::mutex sInitMapRegistryMutex;
1616
return sInitMapRegistryMutex;
17-
};
17+
}
1818
} // unnamed namespace
1919

2020

openvdb/openvdb/openvdb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ inline std::mutex& GetInitMutex()
5151
{
5252
static std::mutex sInitMutex;
5353
return sInitMutex;
54-
};
54+
}
5555

5656
std::atomic<bool> sIsInitialized{false};
5757
}

openvdb_ax/openvdb_ax/ast/Parse.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ inline std::mutex& GetInitMutex()
2323
{
2424
static std::mutex sInitMutex;
2525
return sInitMutex;
26-
};
26+
}
2727
}
2828

2929
openvdb::ax::Logger* axlog = nullptr;

openvdb_ax/openvdb_ax/ax.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ inline std::mutex& GetInitMutex()
112112
{
113113
static std::mutex sInitMutex;
114114
return sInitMutex;
115-
};
115+
}
116116
bool sIsInitialized = false;
117117
bool sShutdown = false;
118118
}

0 commit comments

Comments
 (0)