Skip to content

Commit

Permalink
Fix build on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkprime committed Jun 3, 2016
1 parent a2a01f7 commit 4ef72cd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions core/vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2037,8 +2037,8 @@ class Interpreter {
JsonnetJsonValue::STRING,
encode_utf8(static_cast<HeapString*>(arg.v.h)->value),
0,
{},
{},
std::vector<std::unique_ptr<JsonnetJsonValue>>{},
std::map<std::string, std::unique_ptr<JsonnetJsonValue>>{},
});
break;

Expand All @@ -2047,8 +2047,8 @@ class Interpreter {
JsonnetJsonValue::BOOL,
"",
arg.v.b ? 1.0 : 0.0,
{},
{},
std::vector<std::unique_ptr<JsonnetJsonValue>>{},
std::map<std::string, std::unique_ptr<JsonnetJsonValue>>{},
});
break;

Expand All @@ -2057,8 +2057,8 @@ class Interpreter {
JsonnetJsonValue::NUMBER,
"",
arg.v.d,
{},
{},
std::vector<std::unique_ptr<JsonnetJsonValue>>{},
std::map<std::string, std::unique_ptr<JsonnetJsonValue>>{},
});
break;

Expand All @@ -2067,8 +2067,8 @@ class Interpreter {
JsonnetJsonValue::NULL_KIND,
"",
0,
{},
{},
std::vector<std::unique_ptr<JsonnetJsonValue>>{},
std::map<std::string, std::unique_ptr<JsonnetJsonValue>>{},
});
break;

Expand Down

0 comments on commit 4ef72cd

Please sign in to comment.