Skip to content

Commit

Permalink
fix: CI linter
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Olivier <[email protected]>
  • Loading branch information
martin-olivier committed Dec 27, 2024
1 parent 114b616 commit 6c5bdb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ jobs:
run: pip install cpplint

- name: Run cpplint
run: cpplint --linelength=140 --filter=-whitespace/indent,-whitespace/parens,-build/include_subdir,-runtime/references,-readability/casting src/* include/*
run: cpplint --linelength=140 --filter=-whitespace/indent,-whitespace/parens,-build/include_subdir,-build/c++17,-runtime/references,-readability/casting src/* include/*
3 changes: 3 additions & 0 deletions src/dylib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

#include <fcntl.h>
#include <cstring>
#include <utility>
#include <string>
#include <vector>

#include "dylib.hpp"

Expand Down
1 change: 1 addition & 0 deletions src/symbols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ std::vector<std::string> get_symbols(HMODULE handle, bool demangle, bool loadabl
#include <mach-o/loader.h>
#include <mach-o/nlist.h>
#include <mach-o/fat.h>
#include <utility>
#include <dlfcn.h>
#include <fcntl.h>
#include <unistd.h>
Expand Down

0 comments on commit 6c5bdb6

Please sign in to comment.