View | Details | Raw Unified | Return to bug 243681
Collapse All | Expand All

(-)gcc/analyzer/engine.cc (-2 / +2 lines)
Lines 2940-2946 template <> Link Here
2940
inline void
2940
inline void
2941
pod_hash_traits<function_call_string>::mark_empty (value_type &v)
2941
pod_hash_traits<function_call_string>::mark_empty (value_type &v)
2942
{
2942
{
2943
  v.m_fun = reinterpret_cast<function *> (NULL);
2943
  v.m_fun = static_cast<function *> (NULL);
2944
}
2944
}
2945
template <>
2945
template <>
2946
inline bool
2946
inline bool
Lines 2952-2958 template <> Link Here
2952
inline bool
2952
inline bool
2953
pod_hash_traits<function_call_string>::is_empty (value_type v)
2953
pod_hash_traits<function_call_string>::is_empty (value_type v)
2954
{
2954
{
2955
  return v.m_fun == reinterpret_cast<function *> (NULL);
2955
  return v.m_fun == static_cast<function *> (NULL);
2956
}
2956
}
2957
2957
2958
namespace ana {
2958
namespace ana {

Return to bug 243681