Skip to content

Commit

Permalink
Enable cdecl, stdcall, fastcall tests when _MSC_VER is defined, inste…
Browse files Browse the repository at this point in the history
…ad of just when BOOST_MSVC is defined. Refs #35.
  • Loading branch information
pdimov committed Jul 9, 2024
1 parent 8729fbd commit b7edec7
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion test/bind_cdecl_mf_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/bind_fastcall_mf_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/bind_fastcall_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/bind_stdcall_mf_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/bind_stdcall_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_cdecl_ref_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_cdecl_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_fastcall_ref_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_fastcall_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_stdcall_ref_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down
2 changes: 1 addition & 1 deletion test/mem_fn_stdcall_test.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <boost/config.hpp>

#ifndef BOOST_MSVC
#ifndef _MSC_VER

int main()
{
Expand Down

0 comments on commit b7edec7

Please sign in to comment.