We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4900027 + 4fb9bd6 commit fbcc50bCopy full SHA for fbcc50b
scripts/osx.sh
@@ -4,6 +4,7 @@ set -e -u
4
set -o pipefail
5
6
# install boost headers
7
+brew unlink boost
8
brew install boost
9
10
# run tests
test/binary_visitor_test.cpp
@@ -78,7 +78,7 @@ struct javascript_equal_visitor : util::static_visitor<bool>
78
template <typename T0, typename T1>
79
bool operator() (T0 lhs, T1 rhs) const
80
{
81
- return lhs == rhs;
+ return lhs == static_cast<T0>(rhs);
82
}
83
};
84
0 commit comments