forked from boostorg/core
Disable C4100 in alloc_construct_cxx11_test.cpp
This commit is contained in:
@ -10,6 +10,10 @@ Distributed under the Boost Software License, Version 1.0.
|
|||||||
#include <boost/core/alloc_construct.hpp>
|
#include <boost/core/alloc_construct.hpp>
|
||||||
#include <boost/core/lightweight_test.hpp>
|
#include <boost/core/lightweight_test.hpp>
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# pragma warning(disable: 4100) // unreferenced parameter 'ptr'
|
||||||
|
#endif
|
||||||
|
|
||||||
class type {
|
class type {
|
||||||
public:
|
public:
|
||||||
explicit type(int x)
|
explicit type(int x)
|
||||||
|
Reference in New Issue
Block a user