Replace ifdef guards with pragma once

This commit is contained in:
2022-07-07 23:09:30 -07:00
parent c7f9277780
commit 44055d1e6a
45 changed files with 55 additions and 198 deletions

View File

@@ -29,8 +29,7 @@
// or implied, of Kearwood Gilbert.
//
#ifndef KRAKEN_CONTEXT_H
#define KRAKEN_CONTEXT_H
#pragma once
namespace kraken {
@@ -47,5 +46,3 @@ private:
};
} // namepsace kraken
#endif // KRAKEN_CONTEXT_H

View File

@@ -28,8 +28,7 @@
// or implied, of Kearwood Gilbert.
//
#ifndef KRAKEN_H
#define KRAKEN_H
#pragma once
#include "context.h"
#include "hydra.h"
@@ -435,5 +434,3 @@ KrResult KrAppendAfterNode(const KrAppendAfterNodeInfo* pAppendAfterNodeInfo);
KrResult KrAppendFirstChildNode(const KrAppendFirstChildNodeInfo* pAppendFirstChildNodeInfo);
KrResult KrAppendLastChildNode(const KrAppendLastChildNodeInfo* pAppendLastChildNodeInfo);
KrResult KrUpdateNode(const KrUpdateNodeInfo* pUpdateNodeInfo);
#endif // KRAKEN_H