Skip to content

Commit fbcc50b

Browse files
committedDec 24, 2014
Merge branch 'master' into result_of
2 parents 4900027 + 4fb9bd6 commit fbcc50b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎scripts/osx.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -e -u
44
set -o pipefail
55

66
# install boost headers
7+
brew unlink boost
78
brew install boost
89

910
# run tests

‎test/binary_visitor_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct javascript_equal_visitor : util::static_visitor<bool>
7878
template <typename T0, typename T1>
7979
bool operator() (T0 lhs, T1 rhs) const
8080
{
81-
return lhs == rhs;
81+
return lhs == static_cast<T0>(rhs);
8282
}
8383
};
8484

0 commit comments

Comments
 (0)
Please sign in to comment.