mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-24 05:18:36 +00:00
Switch include guards to #pragma once.
This commit is contained in:
@@ -6,8 +6,7 @@
|
||||
// Copyright 2016 Thomas Harte. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef Storage_Data_Commodore_hpp
|
||||
#define Storage_Data_Commodore_hpp
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
@@ -17,5 +16,3 @@ namespace Storage::Data::Commodore {
|
||||
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
|
||||
|
||||
}
|
||||
|
||||
#endif /* Commodore_hpp */
|
||||
|
||||
@@ -6,8 +6,7 @@
|
||||
// Copyright 2017 Thomas Harte. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef Storage_Data_ZX8081_hpp
|
||||
#define Storage_Data_ZX8081_hpp
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
@@ -28,5 +27,3 @@ std::wstring StringFromData(const std::vector<uint8_t> &data, bool is_zx81);
|
||||
std::vector<uint8_t> DataFromString(const std::wstring &string, bool is_zx81);
|
||||
|
||||
}
|
||||
|
||||
#endif /* ZX8081_hpp */
|
||||
|
||||
Reference in New Issue
Block a user