Fix include guards to not start with _

Since such names are reserved, technically.
This commit is contained in:
Andrew Ayer
2014-04-01 16:18:28 -07:00
parent 7687d11219
commit 8c77209d40
6 changed files with 12 additions and 12 deletions

View File

@@ -28,8 +28,8 @@
* as that of the covered work.
*/
#ifndef _GPG_H
#define _GPG_H
#ifndef GIT_CRYPT_GPG_HPP
#define GIT_CRYPT_GPG_HPP
#include <string>
#include <vector>