Skip to content

Commit 7c137f8

Browse files
committed
proper library dependencies for some modules, include_type system for external libraries, cadmesh include file addressing of warnings
1 parent e2d1715 commit 7c137f8

8 files changed

Lines changed: 894 additions & 880 deletions

File tree

dbselect/dbselect_options.cc

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@
55

66
// namespace to define options
77
namespace dbselect {
8+
GOptions defineOptions() {
9+
GOptions goptions(DBSELECT_LOGGER);
810

9-
GOptions defineOptions() {
10-
11-
GOptions goptions(DBSELECT_LOGGER);
12-
13-
goptions += gdetector::defineOptions();
14-
15-
return goptions;
16-
}
11+
goptions += gdetector::defineOptions();
1712

13+
return goptions;
14+
}
1815
}

dbselect/dbselect_options.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,5 @@
66
constexpr const char* DBSELECT_LOGGER = "dbselect";
77

88
namespace dbselect {
9-
10-
GOptions defineOptions();
11-
9+
GOptions defineOptions();
1210
}
13-
14-

0 commit comments

Comments
 (0)