Skip to content

Commit e18e7fe

Browse files
committed
Tidy up
1 parent 7d011c4 commit e18e7fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pathfinder/core/scene.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ SceneEpoch::SceneEpoch(uint64_t _hi, uint64_t _lo) {
1414
SceneEpoch SceneEpoch::successor() const {
1515
if (lo == std::numeric_limits<uint64_t>::max()) {
1616
return {hi + 1, 0};
17-
} else {
18-
return {hi, lo + 1};
1917
}
18+
return {hi, lo + 1};
2019
}
2120

2221
void SceneEpoch::next() {

0 commit comments

Comments
 (0)