From eeb989fea70a6734100e8f017caf39eeb8628757 Mon Sep 17 00:00:00 2001 From: namark <nshan.nnnn@gmail.com> Date: Sat, 25 Nov 2017 01:40:39 +0400 Subject: [PATCH] simple::Enum moved to support library. --- shred.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shred.cpp b/shred.cpp index 53701f4..ff2d05b 100644 --- a/shred.cpp +++ b/shred.cpp @@ -7,7 +7,7 @@ #include <algorithm> #include "simple/file.hpp" -#include "simple/enum.hpp" +#include "simple/support/enum.hpp" using namespace std; using namespace std::literals; @@ -49,7 +49,7 @@ struct _option_guts }; -using Option = Enum<_option_guts>; +using Option = support::Enum<_option_guts>; using Options = Option::Type; string to_hex_string(int n) -- GitLab