Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
BUG: fix a bug for clang.
  • Loading branch information
JianCheng committed Oct 3, 2017
commit 3746dd58ca8c54cced97e0b5857a917f05a9b20b
2 changes: 1 addition & 1 deletion exprtk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1962,7 +1962,7 @@ namespace exprtk
template <typename T>
inline bool string_to_real(const std::string& s, T& t)
{
const typename numeric::details::number_type<T>::type num_type;
typename numeric::details::number_type<T>::type num_type;

const char_t* begin = s.data();
const char_t* end = s.data() + s.size();
Expand Down