VM: Refactor booleans.hpp to Factor style

db4
Erik Charlebois 2013-05-11 21:45:20 -04:00
parent ad41d8773d
commit 774326b2dc
1 changed files with 2 additions and 6 deletions

View File

@ -1,10 +1,6 @@
namespace factor
{
namespace factor {
/* Cannot allocate */
inline static bool to_boolean(cell value)
{
return value != false_object;
}
inline static bool to_boolean(cell value) { return value != false_object; }
}