Switch from header guards to pragma once

This commit is contained in:
Dominik Charousset 2019-09-17 14:10:30 +02:00
parent 83180a2553
commit c1f3fe7829
254 changed files with 260 additions and 1008 deletions

View file

@ -4,8 +4,7 @@
// It's implemented via a bitmap so the memory usage increases linearly
// with max(set).
#ifndef intset_h
#define intset_h
#pragma once
#include <string.h>
@ -68,5 +67,3 @@ inline void IntSet::Clear()
{
bzero(set, size);
}
#endif