Skip to content

Commit

Permalink
wip: Fix CI failure #1
Browse files Browse the repository at this point in the history
  • Loading branch information
EricCousineau-TRI committed Apr 10, 2018
1 parent 1f213af commit 707f5b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_numpy_dtypes_user.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ Custom operator+(double a, const Custom& b) {
struct ObjectA {};
struct ObjectB {};

Custom operator+(const Custom& a, const ObjectA& b) {
Custom operator+(const Custom&, const ObjectA&) {
return Custom(1000);
}
Custom operator+(const Custom& a, const ObjectB& b) {
Custom operator+(const Custom&, const ObjectB&) {
return Custom(9999);
}

Expand Down

0 comments on commit 707f5b2

Please sign in to comment.