Index: include/future
===================================================================
--- include/future	(revision 190613)
+++ include/future	(working copy)
@@ -19,10 +19,10 @@
 
 enum class future_errc
 {
-    broken_promise,
-    future_already_retrieved,
+    future_already_retrieved = 1,
     promise_already_satisfied,
-    no_state
+    no_state,
+    broken_promise
 };
 
 enum class launch
Index: src/future.cpp
===================================================================
--- src/future.cpp	(revision 190613)
+++ src/future.cpp	(working copy)
@@ -31,6 +31,7 @@
 {
     switch (static_cast<future_errc>(ev))
     {
+    case future_errc(0):
     case future_errc::broken_promise:
         return string("The associated promise has been destructed prior "
                       "to the associated state becoming ready.");
