add support for AppVeyor CI for checking Windows builds

This commit is contained in:
unknown
2015-02-17 10:42:43 +01:00
parent ecc14866e0
commit 63ad11c367
5 changed files with 37 additions and 3 deletions

View File

@@ -253,8 +253,8 @@ TEST(Document, Traits) {
static_assert(!std::is_nothrow_constructible<Document>::value, "");
static_assert(!std::is_nothrow_default_constructible<Document>::value, "");
static_assert(!std::is_nothrow_copy_constructible<Document>::value, "");
#ifndef _MSC_VER
static_assert(!std::is_nothrow_copy_constructible<Document>::value, "");
static_assert(std::is_nothrow_move_constructible<Document>::value, "");
#endif