]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/log/expressions/formatters/c_decorator.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / log / expressions / formatters / c_decorator.hpp
index ec3f48540528555b54efbe2a074b9b19dacb1a9e..fe96fb20b69b29517cfcf49195b5ec81627bcecd 100644 (file)
@@ -154,10 +154,10 @@ struct c_decorator_gen
  * For wide-character formatting there is the similar \c wc_decor decorator generator object.
  */
 #ifdef BOOST_LOG_USE_CHAR
-const aux::c_decorator_gen< char > c_decor = {};
+BOOST_INLINE_VARIABLE const aux::c_decorator_gen< char > c_decor = {};
 #endif
 #ifdef BOOST_LOG_USE_WCHAR_T
-const aux::c_decorator_gen< wchar_t > wc_decor = {};
+BOOST_INLINE_VARIABLE const aux::c_decorator_gen< wchar_t > wc_decor = {};
 #endif
 
 /*!
@@ -254,10 +254,10 @@ struct c_ascii_decorator_gen
  * For wide-character formatting there is the similar \c wc_ascii_decor decorator generator object.
  */
 #ifdef BOOST_LOG_USE_CHAR
-const aux::c_ascii_decorator_gen< char > c_ascii_decor = {};
+BOOST_INLINE_VARIABLE const aux::c_ascii_decorator_gen< char > c_ascii_decor = {};
 #endif
 #ifdef BOOST_LOG_USE_WCHAR_T
-const aux::c_ascii_decorator_gen< wchar_t > wc_ascii_decor = {};
+BOOST_INLINE_VARIABLE const aux::c_ascii_decorator_gen< wchar_t > wc_ascii_decor = {};
 #endif
 
 /*!