1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2026-09-24 12:56:42 +00:00

use compliant include guards

This commit is contained in:
Oliver Giles
2017-12-20 08:24:25 +02:00
parent 9e1a65ccee
commit bb9486e066
9 changed files with 27 additions and 27 deletions

View File

@@ -16,8 +16,8 @@
/// You should have received a copy of the GNU General Public License
/// along with Laminar. If not, see <http://www.gnu.org/licenses/>
///
#ifndef _LAMINAR_SERVER_H_
#define _LAMINAR_SERVER_H_
#ifndef LAMINAR_SERVER_H_
#define LAMINAR_SERVER_H_
#include <kj/async-io.h>
#include <capnp/message.h>
@@ -63,4 +63,4 @@ private:
kj::TaskSet tasks;
};
#endif // _LAMINAR_SERVER_H_
#endif // LAMINAR_SERVER_H_