From 98385b75d69b79cfd9a4d6a564fd6067fa251e71 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 1 May 2020 09:59:55 -0400
Subject: [PATCH] file_sys/seed_db: Add missing include guard

Prevents any potential inclusion errors from occurring.
---
 src/core/file_sys/seed_db.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/core/file_sys/seed_db.h b/src/core/file_sys/seed_db.h
index cf14dd243..6f4714092 100644
--- a/src/core/file_sys/seed_db.h
+++ b/src/core/file_sys/seed_db.h
@@ -2,6 +2,8 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#pragma once
+
 #include <array>
 #include <optional>
 #include <vector>