Skip to content

Commit

Permalink
Replace Deprecated assert.h Header with cassert (#75)
Browse files Browse the repository at this point in the history
This PR removes the following C/C++ linter warning, which highlights a deprecated include header `assert.h` and asks to replace it with `cassert`.
  • Loading branch information
franziska-wegner committed Jan 2, 2024
1 parent 50a74c8 commit 988e0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Runnables/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
#include <QApplication>
#include <QCommandLineParser>

#include <memory>
#include <cassert>
#include <cmath>
#include <ctime>
#include <assert.h>
#include <memory>
#include <type_traits>

#include "DataStructures/Networks/PowerGrid.hpp"
Expand Down

0 comments on commit 988e0ac

Please sign in to comment.