Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
steinerthomas authored Sep 7, 2024
1 parent 3284014 commit bd657ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions recipes/opentelemetry-cpp/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ def _min_cppstd(self):
@property
def _default_cppstd(self):
if self.settings.compiler.get_safe("cppstd"):
return str(self.settings.compiler.cppstd).replace("gnu", "")
else:
if self.settings.compiler == "apple-clang":
# default cppstd for every apple-clang version is still gnu98
return self._min_cppstd
return default_cppstd(self).replace("gnu", "")
return str(self.settings.compiler.cppstd).replace("gnu", "")
else:
if self.settings.compiler == "apple-clang":
# default cppstd for every apple-clang version is still gnu98
return self._min_cppstd
return default_cppstd(self).replace("gnu", "")

@property
def _default_stl_version(self):
Expand Down

0 comments on commit bd657ad

Please sign in to comment.