| 240 | # ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP |
| 241 | template <class L, class R> |
| 242 | inline detail::operator_<detail::op_pow,L,R> |
| 243 | pow(L const&, R const&) |
| 244 | { |
| 245 | return detail::operator_<detail::op_pow,L,R>(); |
| 246 | } |
| 247 | # else |
| 248 | // When there's no argument-dependent lookup, we need these |
| 249 | // overloads to handle the case when everything is imported into the |