rename from soi.h to soi, including macros

This commit is contained in:
Johannes Kapfhammer 2019-10-06 17:16:19 +02:00
parent 44aa8d060a
commit d8a3ccc553
6 changed files with 21 additions and 21 deletions

View file

@ -28,7 +28,7 @@
#include <valarray>
#include <vector>
#include "soi-dbg.hpp"
#include "bits/soi-dbg.hpp"
namespace soi_h {
@ -56,7 +56,7 @@ void noninteractive_check_eof() {
}
bool should_check_for_eof() {
if (const char* eofcheck_enabled = std::getenv("SOI_H_EOFCHECK")) {
if (const char* eofcheck_enabled = std::getenv("SOI_EOFCHECK")) {
if (!std::strcmp(eofcheck_enabled, "1"))
return true;
if (!std::strcmp(eofcheck_enabled, "0"))
@ -96,7 +96,7 @@ soi_h_initializer soi_h_initializer_{false};
} // end namespace soi_h
#include "soi-deprecate.hpp"
#include "bits/soi-deprecate.hpp"
#define int int64_t
using namespace std;