mirror of
https://github.com/boostorg/crc.git
synced 2026-01-19 04:12:07 +00:00
21 lines
349 B
C++
21 lines
349 B
C++
// Copyright 2024 Peter Dimov.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
#include <boost/config/pragma_message.hpp>
|
|
|
|
BOOST_PRAGMA_MESSAGE( "Test skipped because _WIN32 is not defined" )
|
|
|
|
#else
|
|
|
|
#include <windows.h>
|
|
#include <boost/crc.hpp>
|
|
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
}
|