Skip to content
Snippets Groups Projects
Commit 60240642 authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

Fix compilation warning.

parent a05e1f98
No related branches found
No related tags found
No related merge requests found
...@@ -87,8 +87,10 @@ bp::object fromValue(const command::Value& value) { ...@@ -87,8 +87,10 @@ bp::object fromValue(const command::Value& value) {
list.append(fromValue(v)); list.append(fromValue(v));
return list; return list;
} }
case (Value::NONE):
default:
return bp::object();
} }
return bp::object();
} }
} // namespace convert } // namespace convert
......
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