Skip to content

Commit

Permalink
bear: fix formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 12, 2025
1 parent 7c7b04e commit 5ad6eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/bear/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def package_id(self):

def validate(self):
check_min_cppstd(self, self._min_cppstd)
# fmt/ranges.h fails to compile with C++20
check_max_cppstd(self, 17)
# fmt/ranges.h fails to compile with C++20
check_max_cppstd(self, 17)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
Expand Down

0 comments on commit 5ad6eb3

Please sign in to comment.