Skip to content

Commit 538abe8

Browse files
committed
fixed subbmodule, added explicit tribool casting
1 parent cd6cabf commit 538abe8

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitmodules

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
[submodule "lib/local_shared_ptr"]
23
path = lib/local_shared_ptr
3-
url = https://github.com/flipcoder/local_shared_ptr
4+
url = git@github.com:flipcoder/local_shared_ptr.git

kit/kit.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -891,12 +891,12 @@ namespace kit
891891
inline bool any_eq(const boost::any& a, const boost::any& b) {
892892
if(a.type() != b.type())
893893
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);}
900900

901901
throw std::runtime_error("unable to compare values");
902902
}

lib/local_shared_ptr

-1
This file was deleted.

lib/local_shared_ptr

Submodule local_shared_ptr added at fdaef36

0 commit comments

Comments
 (0)