Browse Source

general: Add missing #pragma once directives

nce_cpp
Morph 5 years ago
parent
commit
5004b030df
  1. 2
      src/common/logging/types.h
  2. 2
      src/core/hle/api_version.h
  3. 2
      src/core/hle/service/spl/spl_results.h
  4. 2
      src/core/hle/service/spl/spl_types.h

2
src/common/logging/types.h

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <chrono>
#include "common/common_types.h"

2
src/core/hle/api_version.h

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
// This file contains yuzu's HLE API version constants.

2
src/core/hle/service/spl/spl_results.h

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/result.h"
namespace Service::SPL {

2
src/core/hle/service/spl/spl_types.h

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <span>
#include "common/bit_field.h"

Loading…
Cancel
Save