add include guard for all headers

This commit is contained in:
Johannes Kapfhammer 2022-03-31 21:41:11 +02:00
parent b8e3f1058c
commit 33bcd2f073
Signed by: johannesk
GPG key ID: 565B82ED229ACA80
6 changed files with 24 additions and 11 deletions

View file

@ -1,14 +1,11 @@
// -*- c++ -*-
/*
Students: please don't try to understand the details of headers just
yet. All will be explained. This header is primarily used so that you don't
have to understand every concept all at once.
*/
// Copyright Johannes Kapfhammer 2019-2022.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef SOI_HEADER_INCLUDED
#define SOI_HEADER_INCLUDED
#include "bits/include-all.hpp"
@ -93,3 +90,5 @@ using soi::interactive_task;
#define int int64_t
using namespace std;
#endif // SOI_HEADER_INCLUDED