-
-
Notifications
You must be signed in to change notification settings - Fork 2
V15 #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
BREAKING CHANGE: absl::optional has been replaced by std::optional
…ith those of included projects. BREAKING CHANGE: Added explicit constructors on all single-argument constructors.
…l-with-std-optional fix(Optional): use std::optional
…s into fix/explicit_keyword_on_point_and_vector
BREAKING CHANGE: absl::string_view has been replaced by std::string_view
…:Geode-solutions/OpenGeode-Geosciences into fix_v15/solid_mesh_missing_include_and_bitsery_git_tag_change
…ng_include_and_bitsery_git_tag_change fix(ABI): update ABI
…view-with-std fix(StringView): use std::string_view
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
There were too many comments to post at once. Showing the first 25 out of 71. Check the log or trigger a new build to see more.
@@ -23,7 +23,7 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <absl/strings/string_view.h> | |||
#include <string_view> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'string_view' file not found [clang-diagnostic-error]
#include <string_view>
^
@@ -24,10 +24,9 @@ | |||
#pragma once | |||
|
|||
#include <string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'string' file not found [clang-diagnostic-error]
#include <string>
^
@@ -23,7 +23,7 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <absl/strings/string_view.h> | |||
#include <string_view> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'string_view' file not found [clang-diagnostic-error]
#include <string_view>
^
@@ -24,10 +24,9 @@ | |||
#pragma once | |||
|
|||
#include <string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'string' file not found [clang-diagnostic-error]
#include <string>
^
@@ -23,6 +23,8 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <optional> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'optional' file not found [clang-diagnostic-error]
#include <optional>
^
@@ -262,7 +262,7 @@ | |||
void convert_solid_mesh_coordinate_reference_system( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'convert_point_set_coordinate_reference_system' of similar type ('int') are easily swapped by mistake [bugprone-easily-swappable-parameters]
std::string_view crs_name,
^
Additional context
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:261: the first parameter in the range is 'crs_name'
std::string_view crs_name,
^
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:262: the last parameter in the range is 'info'
hicCoordinateSystem< dimension >::Info info )
^
@@ -273,7 +273,7 @@ | |||
void convert_surface_mesh_coordinate_reference_system( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'convert_solid_mesh_coordinate_reference_system' of similar type ('int') are easily swapped by mistake [bugprone-easily-swappable-parameters]
ilder,
^
Additional context
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:272: the first parameter in the range is 'crs_name'
ilder,
^
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:274: the last parameter in the range is 'info'
o info )
^
@@ -282,7 +282,7 @@ | |||
|
|||
void convert_brep_coordinate_reference_system( const BRep& brep, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'convert_surface_mesh_coordinate_reference_system' of similar type ('int') are easily swapped by mistake [bugprone-easily-swappable-parameters]
,
^
Additional context
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:283: the first parameter in the range is 'crs_name'
ring_view crs_name,
^
src/geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.cpp:285: the last parameter in the range is 'info'
dimension >::Info info )
^
@@ -24,7 +24,7 @@ | |||
#include <geode/geosciences/explicit/representation/io/cross_section_input.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/explicit/representation/io/cross_section_input.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/cross_section_input.h>
^
@@ -24,7 +24,7 @@ | |||
#include <geode/geosciences/explicit/representation/io/cross_section_input.h> | |||
|
|||
#include <absl/strings/str_cat.h> | |||
#include <absl/strings/string_view.h> | |||
#include <string_view> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
fix(OpenGeode): update to new AABBTree api
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
There were too many comments to post at once. Showing the first 25 out of 46. Check the log or trigger a new build to see more.
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/explicit/representation/io/cross_section_output.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/explicit/representation/io/cross_section_output.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/cross_section_output.h>
^
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/explicit/representation/io/cross_section_output.h> | |||
|
|||
#include <string> | |||
#include <string_view> | |||
#include <vector> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
#include <vector> | |
#include <vector> |
@@ -39,7 +38,7 @@ | |||
namespace geode | |||
{ | |||
std::vector< std::string > save_cross_section( | |||
const CrossSection& cross_section, absl::string_view filename ) | |||
const CrossSection& cross_section, std::string_view filename ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'save_cross_section' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const CrossSection& cross_section, std::string_view filename )
^
Additional context
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:40: the first parameter in the range is 'cross_section'
const CrossSection& cross_section, std::string_view filename )
^
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:40: the last parameter in the range is 'filename'
const CrossSection& cross_section, std::string_view filename )
^
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:40: 'const int &' and 'int' parameters accept and bind the same kind of values
const CrossSection& cross_section, std::string_view filename )
^
@@ -59,7 +58,7 @@ | |||
} | |||
|
|||
bool is_cross_section_saveable( | |||
const CrossSection& cross_section, absl::string_view filename ) | |||
const CrossSection& cross_section, std::string_view filename ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'is_cross_section_saveable' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const CrossSection& cross_section, std::string_view filename )
^
Additional context
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:60: the first parameter in the range is 'cross_section'
const CrossSection& cross_section, std::string_view filename )
^
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:60: the last parameter in the range is 'filename'
const CrossSection& cross_section, std::string_view filename )
^
src/geode/geosciences/explicit/representation/io/cross_section_output.cpp:60: 'const int &' and 'int' parameters accept and bind the same kind of values
const CrossSection& cross_section, std::string_view filename )
^
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/explicit/representation/io/structural_model_input.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/explicit/representation/io/structural_model_input.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/structural_model_input.h>
^
@@ -39,7 +38,7 @@ | |||
template < index_t dimension > | |||
std::vector< std::string > save_horizons_stack( | |||
const HorizonsStack< dimension >& horizons_stack, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'save_horizons_stack' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const HorizonsStack< dimension >& horizons_stack,
^
Additional context
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:39: the first parameter in the range is 'horizons_stack'
const HorizonsStack< dimension >& horizons_stack,
^
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:40: the last parameter in the range is 'filename'
std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:40: 'const int &' and 'int' parameters accept and bind the same kind of values
std::string_view filename )
^
@@ -61,20 +60,20 @@ | |||
template < index_t dimension > | |||
bool is_horizons_stack_saveable( | |||
const HorizonsStack< dimension >& horizons_stack, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'is_horizons_stack_saveable' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const HorizonsStack< dimension >& horizons_stack,
^
Additional context
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:61: the first parameter in the range is 'horizons_stack'
const HorizonsStack< dimension >& horizons_stack,
^
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:62: the last parameter in the range is 'filename'
std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/horizons_stack_output.cpp:62: 'const int &' and 'int' parameters accept and bind the same kind of values
std::string_view filename )
^
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_input.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/implicit_cross_section_input.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_input.h>
^
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_input.h> | |||
|
|||
#include <string_view> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_output.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/implicit_cross_section_output.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_output.h>
^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/implicit/representation/io/implicit_cross_section_output.h> | |||
|
|||
#include <string> | |||
#include <string_view> | |||
#include <vector> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
#include <vector> | |
#include <vector> |
@@ -40,7 +39,7 @@ | |||
namespace geode | |||
{ | |||
std::vector< std::string > save_implicit_cross_section( | |||
const ImplicitCrossSection& section, absl::string_view filename ) | |||
const ImplicitCrossSection& section, std::string_view filename ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'save_implicit_cross_section' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const ImplicitCrossSection& section, std::string_view filename )
^
Additional context
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:41: the first parameter in the range is 'section'
const ImplicitCrossSection& section, std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:41: the last parameter in the range is 'filename'
const ImplicitCrossSection& section, std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:41: 'const int &' and 'int' parameters accept and bind the same kind of values
const ImplicitCrossSection& section, std::string_view filename )
^
@@ -64,7 +63,7 @@ | |||
} | |||
|
|||
bool is_implicit_cross_section_saveable( | |||
const ImplicitCrossSection& section, absl::string_view filename ) | |||
const ImplicitCrossSection& section, std::string_view filename ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'is_implicit_cross_section_saveable' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const ImplicitCrossSection& section, std::string_view filename )
^
Additional context
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:65: the first parameter in the range is 'section'
const ImplicitCrossSection& section, std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:65: the last parameter in the range is 'filename'
const ImplicitCrossSection& section, std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/implicit_cross_section_output.cpp:65: 'const int &' and 'int' parameters accept and bind the same kind of values
const ImplicitCrossSection& section, std::string_view filename )
^
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/implicit_structural_model_input.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/implicit_structural_model_input.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/implicit_structural_model_input.h>
^
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/implicit_structural_model_input.h> | |||
|
|||
#include <string_view> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
@@ -23,8 +23,9 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/stratigraphic_section_input.h> | |||
|
|||
#include <string_view> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/implicit/representation/io/stratigraphic_section_output.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/stratigraphic_section_output.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/stratigraphic_section_output.h>
^
@@ -24,10 +24,9 @@ | |||
#include <geode/geosciences/implicit/representation/io/stratigraphic_section_output.h> | |||
|
|||
#include <string> | |||
#include <string_view> | |||
#include <vector> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header string_view is not used directly [misc-include-cleaner]
#include <vector> | |
#include <vector> |
@@ -42,7 +41,7 @@ | |||
{ | |||
std::vector< std::string > save_stratigraphic_section( | |||
const StratigraphicSection& stratigraphic_section, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'save_stratigraphic_section' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const StratigraphicSection& stratigraphic_section,
^
Additional context
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:42: the first parameter in the range is 'stratigraphic_section'
const StratigraphicSection& stratigraphic_section,
^
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:43: the last parameter in the range is 'filename'
std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:43: 'const int &' and 'int' parameters accept and bind the same kind of values
std::string_view filename )
^
@@ -70,7 +69,7 @@ | |||
|
|||
bool is_stratigraphic_section_saveable( | |||
const StratigraphicSection& stratigraphic_section, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 2 adjacent parameters of 'is_stratigraphic_section_saveable' of similar type are easily swapped by mistake [bugprone-easily-swappable-parameters]
const StratigraphicSection& stratigraphic_section,
^
Additional context
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:70: the first parameter in the range is 'stratigraphic_section'
const StratigraphicSection& stratigraphic_section,
^
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:71: the last parameter in the range is 'filename'
std::string_view filename )
^
src/geode/geosciences/implicit/representation/io/stratigraphic_section_output.cpp:71: 'const int &' and 'int' parameters accept and bind the same kind of values
std::string_view filename )
^
fix(Filesystem): upgrading to standard filesystem
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
@@ -23,13 +23,12 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <filesystem> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'filesystem' file not found [clang-diagnostic-error]
#include <filesystem>
^
@@ -23,9 +23,10 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.h>
^
@@ -23,9 +23,10 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.h> | |||
|
|||
#include <async++.h> | |||
#include <filesystem> | |||
#include <fstream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header filesystem is not used directly [misc-include-cleaner]
#include <fstream> | |
#include <fstream> |
@@ -23,9 +23,10 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_input.h> | |||
|
|||
#include <async++.h> | |||
#include <filesystem> | |||
#include <fstream> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header fstream is not used directly [misc-include-cleaner]
@@ -23,13 +23,13 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_cross_section_output.h>
^
@@ -23,9 +23,10 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.h> | |||
|
|||
#include <async++.h> | |||
#include <filesystem> | |||
#include <fstream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header filesystem is not used directly [misc-include-cleaner]
#include <fstream> | |
#include <fstream> |
@@ -23,9 +23,10 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_input.h> | |||
|
|||
#include <async++.h> | |||
#include <filesystem> | |||
#include <fstream> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header fstream is not used directly [misc-include-cleaner]
@@ -23,13 +23,13 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: 'geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.h' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.h>
^
@@ -23,13 +23,13 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.h> | |||
|
|||
#include <filesystem> | |||
#include <fstream> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header filesystem is not used directly [misc-include-cleaner]
#include <fstream> | |
#include <fstream> |
@@ -23,13 +23,13 @@ | |||
|
|||
#include <geode/geosciences/implicit/representation/io/geode/geode_implicit_structural_model_output.h> | |||
|
|||
#include <filesystem> | |||
#include <fstream> | |||
#include <string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: included header fstream is not used directly [misc-include-cleaner]
#include <string> | |
#include <string> |
…o-internal fix(Private): rename private folders to internal
🎉 This PR is included in version 8.0.0-rc.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 8.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.