Skip to content

Commit

Permalink
Silenced g++ -Wignored-qualifiers warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rollbear committed Jan 20, 2019
1 parent 98aa7af commit 22661e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/trompeloeil.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4298,8 +4298,8 @@ template <typename T>
using pmf_e_t = typename ::trompeloeil::signature_to_member_function< \
T_ ## name, TROMPELOEIL_LINE_ID(tag_type_trompeloeil), sig>::type const; \
\
auto s_ptr = static_cast<pmf_s_t>(&T_ ## name::trompeloeil_self_ ## name); \
auto e_ptr = static_cast<pmf_e_t>(&T_ ## name::trompeloeil_tag_ ## name); \
pmf_s_t const s_ptr = &T_ ## name::trompeloeil_self_ ## name; \
pmf_e_t const e_ptr = &T_ ## name::trompeloeil_tag_ ## name; \
\
::trompeloeil::ignore(s_ptr, e_ptr); \
\
Expand Down

0 comments on commit 22661e2

Please sign in to comment.