From 2252e6c3c391dc162ed1245a5d348c1f9a587a4b Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 30 Jun 2021 16:21:37 -0400 Subject: [PATCH] Fix typo --- include/kabufuda/Util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kabufuda/Util.hpp b/include/kabufuda/Util.hpp index b1e85d8..099225e 100644 --- a/include/kabufuda/Util.hpp +++ b/include/kabufuda/Util.hpp @@ -174,7 +174,7 @@ constexpr double SBig(double val) { return val; } #if _WIN32 using Sstat = struct ::_stat64; #else -using SStat = struct stat; +using Sstat = struct stat; #endif uint64_t getGCTime();