File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change
1
+
1
2
[submodule "lib/local_shared_ptr "]
2
3
path = lib/local_shared_ptr
3
- url = https:// github.com/ flipcoder/local_shared_ptr
4
+ url = git@ github.com: flipcoder/local_shared_ptr.git
Original file line number Diff line number Diff line change @@ -891,12 +891,12 @@ namespace kit
891
891
inline bool any_eq (const boost::any& a, const boost::any& b) {
892
892
if (a.type () != b.type ())
893
893
return false ;
894
- {auto r = any_eq_type<std::string>(a,b); if (r>=0 ) return r ; }
895
- {auto r = any_eq_type<int >(a,b); if (r>=0 ) return r ;}
896
- {auto r = any_eq_type<unsigned >(a,b); if (r>=0 ) return r ;}
897
- {auto r = any_eq_type<float >(a,b); if (r>=0 ) return r ;}
898
- {auto r = any_eq_type<double >(a,b); if (r>=0 ) return r ;}
899
- {auto r = any_eq_type<bool >(a,b); if (r>=0 ) return r ;}
894
+ {auto r = any_eq_type<std::string>(a,b); if (r>=0 ) return bool (r) ; }
895
+ {auto r = any_eq_type<int >(a,b); if (r>=0 ) return bool (r) ;}
896
+ {auto r = any_eq_type<unsigned >(a,b); if (r>=0 ) return bool (r) ;}
897
+ {auto r = any_eq_type<float >(a,b); if (r>=0 ) return bool (r) ;}
898
+ {auto r = any_eq_type<double >(a,b); if (r>=0 ) return bool (r) ;}
899
+ {auto r = any_eq_type<bool >(a,b); if (r>=0 ) return bool (r) ;}
900
900
901
901
throw std::runtime_error (" unable to compare values" );
902
902
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments