Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-olivier committed Jul 14, 2024
1 parent 939c8d2 commit f3acc1d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ jobs:
run: pip install cpplint

- name: Run cpplint
run: cpplint --linelength=140 --filter=-whitespace/indent,-whitespace/parens,-build/include_subdir src/* include/*
run: cpplint --linelength=140 --filter=-whitespace/indent,-whitespace/parens,-build/include_subdir,-runtime/references,-readability/casting src/* include/*
11 changes: 10 additions & 1 deletion src/win.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* @file win.cpp
*
* @author Martin Olivier <[email protected]>
* @copyright (c) 2024 Martin Olivier
*
* This library is released under MIT license
*/

#include <windows.h>
#include <dbghelp.h>
#include <stdio.h>
Expand Down Expand Up @@ -95,4 +104,4 @@ std::vector<std::string> get_symbols(HMODULE hModule, bool demangle) {
}

return result;
}
}

0 comments on commit f3acc1d

Please sign in to comment.