Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
volkan-aslan committed Aug 26, 2024
1 parent f93f496 commit 4f043d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ jobs:
run: sudo apt-get install cppcheck

- name: Run CppCheck
run: cppcheck --enable=all --std=c++11 --suppress=missingIncludeSystem .
run: cppcheck --enable=all --std=c++11 --inconclusive --suppress=missingIncludeSystem --error-exitcode=1 .
continue-on-error: false
3 changes: 2 additions & 1 deletion Volkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@


namespace Volkan{
void Volkan::Print(){
void Volkan::main(){
u_int8_t a = 1;
u_int16_t v = 3/0;
u_int16_t a = 3/1;
std::cout << "This is Volkan";
}
}
Expand Down
8 changes: 0 additions & 8 deletions cppcheck_report.txt

This file was deleted.

0 comments on commit 4f043d6

Please sign in to comment.