Fix compiler warning about reserved identifier

Warning was (on clang-3.7):

/Users/gck/dev/cpp-peglib/test/../peglib.h:9:9: warning: macro name is a
      reserved identifier [-Wreserved-id-macro]
#define _CPPPEGLIB_PEGLIB_H_
This commit is contained in:
hvellyr 2016-06-07 09:53:31 +02:00
parent f764e9a85d
commit bc9234a25f

View File

@ -5,8 +5,8 @@
// MIT License
//
#ifndef _CPPPEGLIB_PEGLIB_H_
#define _CPPPEGLIB_PEGLIB_H_
#ifndef CPPPEGLIB_PEGLIB_H
#define CPPPEGLIB_PEGLIB_H
#include <algorithm>
#include <cassert>