mirror of
https://github.com/boostorg/local_function.git
synced 2026-01-20 16:52:08 +00:00
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
|
|
// Copyright (C) 2009-2012 Lorenzo Caminiti
|
|
// Distributed under the Boost Software License, Version 1.0
|
|
// (see accompanying file LICENSE_1_0.txt or a copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
// Home at http://www.boost.org/libs/local_function
|
|
|
|
#include <boost/config.hpp>
|
|
#ifndef BOOST_NO_VARIADIC_MACROS
|
|
|
|
#include <boost/local_function.hpp>
|
|
#include <boost/utility/identity_type.hpp>
|
|
#include <boost/config.hpp>
|
|
#define BOOST_TEST_MODULE TestMacroCommas
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
std::string cat(const std::string& x, const std::string& y) { return x + y; }
|
|
|
|
template<typename V, typename K>
|
|
struct key_sizeof {
|
|
BOOST_STATIC_CONSTANT(int, value = sizeof(K));
|
|
};
|
|
|
|
typedef int sign_t;
|
|
|
|
BOOST_AUTO_TEST_CASE(test_macro_commas) {
|
|
//[macro_commas
|
|
void BOOST_LOCAL_FUNCTION(
|
|
BOOST_IDENTITY_TYPE((const std::map<std::string, size_t>&)) m,
|
|
BOOST_IDENTITY_TYPE((::sign_t)) sign,
|
|
const size_t& factor,
|
|
default (key_sizeof<std::string, size_t>::value),
|
|
const std::string& separator, default cat(":", " ")
|
|
) {
|
|
// Do something...
|
|
} BOOST_LOCAL_FUNCTION_NAME(f)
|
|
//]
|
|
|
|
std::map<std::string, size_t> m;
|
|
::sign_t sign = -1;
|
|
f(m, sign);
|
|
}
|
|
|
|
#else
|
|
|
|
int main(void) { return 0; } // Trivial test.
|
|
|
|
#endif
|
|
|