1
0
forked from boostorg/core

Disable C4100 in alloc_construct_cxx11_test.cpp

This commit is contained in:
Peter Dimov
2021-11-01 02:38:19 +02:00
parent 9efeed68cb
commit 56566d9abc

View File

@ -10,6 +10,10 @@ Distributed under the Boost Software License, Version 1.0.
#include <boost/core/alloc_construct.hpp>
#include <boost/core/lightweight_test.hpp>
#if defined(_MSC_VER)
# pragma warning(disable: 4100) // unreferenced parameter 'ptr'
#endif
class type {
public:
explicit type(int x)