File tree Expand file tree Collapse file tree 5 files changed +14
-7
lines changed
Expand file tree Collapse file tree 5 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ INPUT = @doxy_main_page@ \
66 @PROJECT_SOURCE_DIR@ \
77 @PROJECT_BINARY_DIR@
88FILE_PATTERNS = *.h \
9- *.cc
9+ *.hpp \
10+ *.cc \
11+ *.ccp
1012RECURSIVE = YES
11- USE_MDFILE_AS_MAINPAGE = @doxy_main_page@
13+ USE_MDFILE_AS_MAINPAGE = @doxy_main_page@
14+
15+ EXCLUDE_PATTERNS = */third_party/*
16+ EXCLUDE_PATTERNS += */test/*
17+
18+ HAVE_DOT = YES
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace libdbc {
2929 parse_dbc_header (s);
3030
3131 while (!s.eof ()) {
32- Utils ::SafeString::get_line (s, line);
32+ utils ::SafeString::get_line (s, line);
3333
3434 }
3535
@@ -48,7 +48,7 @@ namespace libdbc {
4848 std::string line;
4949 std::smatch match;
5050
51- Utils ::SafeString::get_line (file_stream, line);
51+ utils ::SafeString::get_line (file_stream, line);
5252
5353 if (!std::regex_search (line, match, version_re)) {
5454 throw validity_error ();
Original file line number Diff line number Diff line change 11#include " util/utils.hpp"
22
3- namespace Utils {
3+ namespace utils {
44
55 std::istream & SafeString::get_line ( std::istream & stream, std::string & line ) {
66 std::string newline;
Original file line number Diff line number Diff line change 22#include < fstream>
33#include < iostream>
44
5- namespace Utils {
5+ namespace utils {
66
77 class SafeString {
88 public:
Original file line number Diff line number Diff line change 22#include " defines.hpp"
33#include " util/utils.hpp"
44
5- using namespace Utils ;
5+ using namespace utils ;
66
77TEST_CASE (" Basic file input with safe get_line that is non line ending specific" , " " ) {
88 SECTION (" Verify various line ending input files" ) {
You can’t perform that action at this time.
0 commit comments