mirror of
https://github.com/AGWA/git-crypt.git
synced 2025-12-22 23:26:11 -08:00
Fix include guards to not start with _
Since such names are reserved, technically.
This commit is contained in:
@@ -28,8 +28,8 @@
|
||||
* as that of the covered work.
|
||||
*/
|
||||
|
||||
#ifndef _COMMANDS_H
|
||||
#define _COMMANDS_H
|
||||
#ifndef GIT_CRYPT_COMMANDS_HPP
|
||||
#define GIT_CRYPT_COMMANDS_HPP
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
* as that of the covered work.
|
||||
*/
|
||||
|
||||
#ifndef _CRYPTO_H
|
||||
#define _CRYPTO_H
|
||||
#ifndef GIT_CRYPT_CRYPTO_HPP
|
||||
#define GIT_CRYPT_CRYPTO_HPP
|
||||
|
||||
#include "key.hpp"
|
||||
#include <openssl/aes.h>
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
* as that of the covered work.
|
||||
*/
|
||||
|
||||
#ifndef _GIT_CRYPT_H
|
||||
#define _GIT_CRYPT_H
|
||||
#ifndef GIT_CRYPT_GIT_CRYPT_HPP
|
||||
#define GIT_CRYPT_GIT_CRYPT_HPP
|
||||
|
||||
extern const char* argv0; // initialized in main() to argv[0]
|
||||
|
||||
|
||||
4
gpg.hpp
4
gpg.hpp
@@ -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>
|
||||
|
||||
4
key.hpp
4
key.hpp
@@ -28,8 +28,8 @@
|
||||
* as that of the covered work.
|
||||
*/
|
||||
|
||||
#ifndef _KEY_H
|
||||
#define _KEY_H
|
||||
#ifndef GIT_CRYPT_KEY_HPP
|
||||
#define GIT_CRYPT_KEY_HPP
|
||||
|
||||
#include <map>
|
||||
#include <functional>
|
||||
|
||||
Reference in New Issue
Block a user