diff -r 1de2b8d64e9f -r 98906a94732f src/main.h --- a/src/main.h Tue Jan 28 23:34:49 2020 +0200 +++ b/src/main.h Thu Jan 30 19:20:11 2020 +0200 @@ -31,13 +31,13 @@ constexpr char mainwindow[] = "mainwindow"; } -namespace linetypes +namespace ldraw { // Uniquely identifies a model body object struct Id { unsigned int value; - constexpr bool operator<(linetypes::Id other) const + constexpr bool operator<(ldraw::Id other) const { return this->value < other.value; }