Skip to content

Commit

Permalink
mitigated include-what-you-use warnings (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave authored Apr 24, 2024
1 parent 19df0b1 commit 3678cd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simplecpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
#include <cassert>
#include <cctype>
#include <climits>
#include <cstddef>
#include <cstddef> // IWYU pragma: keep
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <exception>
#include <fstream> // IWYU pragma: keep
#include <fstream>
#include <iostream>
#include <limits>
#include <list>
#include <map>
#include <set>
#include <sstream> // IWYU pragma: keep
#include <sstream>
#include <stack>
#include <stdexcept>
#include <string>
Expand Down

0 comments on commit 3678cd1

Please sign in to comment.