Skip to content

Commit

Permalink
correct review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Jul 20, 2021
1 parent 3bdf729 commit e28e98f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recipes/effcee/all/test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ def build(self):
cmake.build()

def test(self):
if and not tools.cross_building(self.settings):
if tools.cross_building(self.settings):
bin_path = os.path.join("bin", "effcee-example")
self.run(bin_path, run_environment=True)
2 changes: 1 addition & 1 deletion recipes/effcee/all/test_package/main.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "effcee/effcee.h"

int main(void) {
const std::string = effcee::Match("foo bar qux", "foo",
auto match = effcee::Match("foo bar qux", "foo",
effcee::Options().SetChecksName("checks"));
return 0;
}

0 comments on commit e28e98f

Please sign in to comment.