Monday, December 7, 2015

Digest for comp.lang.c++@googlegroups.com - 8 updates in 2 topics

"Alf P. Steinbach" <alf.p.steinbach+usenet@gmail.com>: Dec 07 04:31AM +0100

#pragma once
// core_language_support.hpp
// Copyright © Alf P. Steinbach 2015. Boost Software License 1.0.
 
#include <p/cppx/tmp/sfinae.hpp> // cppx::If_, cppx::Type_set, cppx::In_
 
#include <array> // std::array
#include <assert.h> // assert
#include <bitset> // std::bitset
#include <limits.h> // CHAR_BIT
#include <stddef.h> // size_t
#include <string> // std::basic_string
#include <type_traits> // std::conditional_t
 
#ifdef _WIN32
# define CPPX_SYSTEXT_PREFIX L""
# define CPPX_SYSCHAR_IS_WIDE 1
#else
# define CPPX_SYSTEXT_PREFIX ""
# define CPPX_SYSCHAR_IS_WIDE 0

No comments: