Skip to content

Commit

Permalink
cxx, macro typo. missing the comma ;
Browse files Browse the repository at this point in the history
  • Loading branch information
yssource committed May 5, 2022
1 parent 8b3735a commit 8ff9800
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ CheckOptions:
value: '10'
- key: google-readability-namespace-comments.SpacesBeforeComments
value: '2'
- key: modernize-loop-convert.NamingStyle
value: CamelCase
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ ENV/
/cxx.sql/
/cxx/public/
/cxx/views/
/**/cbuild*/
/**/q*build*/
cbuild/
qbuild/
tmp/
build-main*/
*.pro.user
Expand All @@ -138,3 +138,5 @@ Pipfile.lock

# premium data source
/abquant/data/premium/

tags
4 changes: 4 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC

def configure(self):
if self.options.shared:
del self.options.fPIC

# def build_requirements(self):
# self.build_requires("cmake/3.20.3")
# self.build_requires("ninja/1.10.2")
Expand Down
2 changes: 1 addition & 1 deletion cxx/src/actions/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ using is_base_of_template = typename is_base_of_template_impl<base, derived>::ty
QString msg = QString(col) + QString(" series are not available here."); \
throw std::runtime_error(msg.toStdString()); \
} \
} while (false)
} while (false);

} // namespace abq

0 comments on commit 8ff9800

Please sign in to comment.