X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e9ae1f101b5418c0ba2e6c9d86b23c12f0140982..f9cfb6b592cf376bcf9e0ba3ce7c446e58d62255:/include/stg/corp_conf.h

diff --git a/include/stg/corp_conf.h b/include/stg/corp_conf.h
index 6b1cbb83..8ff4094f 100644
--- a/include/stg/corp_conf.h
+++ b/include/stg/corp_conf.h
@@ -20,9 +20,8 @@
 
 #pragma once
 
-#include "stg/optional.h"
-
 #include <string>
+#include <optional>
 
 namespace STG
 {
@@ -46,8 +45,8 @@ struct CorpConf
 
 struct CorpConfOpt
 {
-    Optional<std::string> name;
-    Optional<double>      cash;
+    std::optional<std::string> name;
+    std::optional<double>      cash;
 };
 
 }