Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 9dd8d7e

Browse files
committed
move throw_if_multiple_soma_z into namespace
1 parent ab10ae1 commit 9dd8d7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/readers/morphologyASC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ bool skip_sexp(size_t id) {
4949
id == +Token::HIGH || id == +Token::INCOMPLETE || id == +Token::LOW ||
5050
id == +Token::NORMAL || id == +Token::FONT || id == +Token::MARKER);
5151
}
52-
} // namespace
5352

5453
void throw_if_multiple_soma_z(std::vector<Point>& points, long unsigned int line) {
5554
for (size_t i = 0; i < points.size() - 1; ++i) {
@@ -59,6 +58,7 @@ void throw_if_multiple_soma_z(std::vector<Point>& points, long unsigned int line
5958
", " + dumpPoint(points[i + 1]));
6059
}
6160
}
61+
} // namespace
6262

6363
class NeurolucidaParser
6464
{

0 commit comments

Comments
 (0)