Skip to content
Snippets Groups Projects
Commit 72486342 authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

possible fix for linux build failure

parent af74e5e4
No related branches found
No related tags found
No related merge requests found
...@@ -128,13 +128,13 @@ is_single_key_map(const LLSD & sd, const std::string & key) ...@@ -128,13 +128,13 @@ is_single_key_map(const LLSD & sd, const std::string & key)
{ {
return sd.isMap() && 1 == sd.size() && sd.has(key); return sd.isMap() && 1 == sd.size() && sd.has(key);
} }
#endif
static bool static bool
is_double_key_map(const LLSD & sd, const std::string & key1, const std::string & key2) is_double_key_map(const LLSD & sd, const std::string & key1, const std::string & key2)
{ {
return sd.isMap() && 2 == sd.size() && sd.has(key1) && sd.has(key2); return sd.isMap() && 2 == sd.size() && sd.has(key1) && sd.has(key2);
} }
#endif
static bool static bool
is_triple_key_map(const LLSD & sd, const std::string & key1, const std::string & key2, const std::string& key3) is_triple_key_map(const LLSD & sd, const std::string & key1, const std::string & key2, const std::string& key3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment