diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-11-16 04:45:32 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-11-16 04:45:32 +0000 |
commit | 86dd66e96cc57d70639bfbae71f23ad4953ea1a5 (patch) | |
tree | 4c27911f66b1e89bbf79b363b51662edf564e08c | |
parent | d05c5aea47d360fcda37de5e5801f728908271d5 (diff) | |
download | bcm5719-llvm-86dd66e96cc57d70639bfbae71f23ad4953ea1a5.tar.gz bcm5719-llvm-86dd66e96cc57d70639bfbae71f23ad4953ea1a5.zip |
Fix non-reserved name usage
llvm-svn: 287080
-rw-r--r-- | libcxx/include/limits | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/limits b/libcxx/include/limits index 80a1be40fe4..b066d74cc7b 100644 --- a/libcxx/include/limits +++ b/libcxx/include/limits @@ -182,7 +182,7 @@ protected: static _LIBCPP_CONSTEXPR const float_round_style round_style = round_toward_zero; }; -template <class _Tp, int digits, bool is_signed> +template <class _Tp, int digits, bool _IsSigned> struct __libcpp_compute_min { static _LIBCPP_CONSTEXPR const _Tp value = _Tp(_Tp(1) << digits); |