Skip to content

Commit

Permalink
Merge pull request #1956 from DARMA-tasking/1955-warnings
Browse files Browse the repository at this point in the history
#1955: Suppress spurious warning about method declared but not used
  • Loading branch information
PhilMiller authored and cz4rs committed Sep 28, 2022
2 parents 5387ede + 06a69b4 commit 985115d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/unit/lb/test_lb_data_comm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,17 @@ struct ReduceMsg : SerializeRequired<
)
{ }

#if defined(__INTEL_COMPILER)
#pragma warning(push)
#pragma warning(disable : 177)
#endif
template <typename SerializerT>
void serialize(SerializerT& s) {
MessageParentType::serialize(s);
}
#if defined(__INTEL_COMPILER)
#pragma warning(pop)
#endif
};
struct ColProxyMsg : vt::Message {
using ProxyType = vt::CollectionProxy<MyCol>;
Expand Down

0 comments on commit 985115d

Please sign in to comment.