6.1. 1.12
-
diff --git a/include/boost/predef/library/std/cxx.h b/include/boost/predef/library/std/cxx.h
index 61a09a8..470c80d 100644
--- a/include/boost/predef/library/std/cxx.h
+++ b/include/boost/predef/library/std/cxx.h
@@ -32,7 +32,7 @@ http://libcxx.llvm.org/[libc++] {CPP} Standard Library.
#if defined(_LIBCPP_VERSION)
# undef BOOST_LIB_STD_CXX
-# define BOOST_LIB_STD_CXX BOOST_PREDEF_MAKE_10_VPPP(_LIBCPP_VERSION)
+# define BOOST_LIB_STD_CXX BOOST_PREDEF_MAKE_10_VVPPP(_LIBCPP_VERSION)
#endif
#if BOOST_LIB_STD_CXX
diff --git a/include/boost/predef/make.h b/include/boost/predef/make.h
index 810ba45..e65a0e1 100644
--- a/include/boost/predef/make.h
+++ b/include/boost/predef/make.h
@@ -66,6 +66,10 @@ Macros are:
*/ // end::reference[]
#define BOOST_PREDEF_MAKE_10_VPPP(V) BOOST_VERSION_NUMBER(((V)/1000)%10,0,(V)%1000)
/* tag::reference[]
+* `BOOST_PREDEF_MAKE_10_VVPPP(V)`
+*/ // end::reference[]
+#define BOOST_PREDEF_MAKE_10_VVPPP(V) BOOST_VERSION_NUMBER(((V)/1000)%100,0,(V)%1000)
+/* tag::reference[]
* `BOOST_PREDEF_MAKE_10_VR0(V)`
*/ // end::reference[]
#define BOOST_PREDEF_MAKE_10_VR0(V) BOOST_VERSION_NUMBER(((V)/100)%10,((V)/10)%10,0)