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 @@
// TODO: - Document how to use this.
// - Find some nice macro-based interface?
#ifndef continuation_h
#define continuation_h
#pragma once
#include "List.h"
@ -54,5 +53,3 @@ private:
voidp_list states;
};
#endif