Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cpp-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
mkdir build && cd build
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
cmake --build .
- uses: cpp-linter/cpp-linter-action@d7155ea6699028b6b09b0457e26b3c5d73f0ed46
- uses: cpp-linter/cpp-linter-action@f91c446a32ae3eb9f98fef8c9ed4c7cb613a4f8a
id: linter
continue-on-error: true
env:
Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/file_format.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include "iceberg/iceberg_export.h"
#include "iceberg/result.h"
#include "iceberg/util/string_utils.h"
#include "iceberg/util/string_util.h"

namespace iceberg {

Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/transform_function.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "iceberg/expression/literal.h"
#include "iceberg/type.h"
#include "iceberg/util/murmurhash3_internal.h"
#include "iceberg/util/truncate_utils.h"
#include "iceberg/util/truncate_util.h"

namespace iceberg {

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ add_iceberg_test(util_test
formatter_test.cc
config_test.cc
visit_type_test.cc
string_utils_test.cc)
string_util_test.cc)

if(ICEBERG_BUILD_BUNDLE)
add_iceberg_test(avro_test
Expand Down
2 changes: 1 addition & 1 deletion test/string_utils_test.cc → test/string_util_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

#include "iceberg/util/string_utils.h"
#include "iceberg/util/string_util.h"

#include <gtest/gtest.h>

Expand Down
Loading