Skip to content

Commit

Permalink
matched test to new version of dbghelp.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Feb 13, 2016
1 parent 075d210 commit 7e80949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cpp_import_class_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ int main(int argc, char* argv[])
BOOST_TEST(!cl.is_copy_constructible());

#if defined(BOOST_MSVC) || defined(BOOST_MSVC_FULL_VER)
auto &ver = boost::detail::winapi::image_api_version();
if (ver.major_version >= 6) //version 4 does not contain that.
auto ver = boost::detail::winapi::ImagehlpApiVersion();
if (ver->MajorVersion >= 6) //version 4 does not contain that.
#endif
{
BOOST_TEST( cl.is_move_assignable());
Expand Down

0 comments on commit 7e80949

Please sign in to comment.