diff options
author | murgatroid99 <mlumish@google.com> | 2015-02-09 11:43:34 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-02-09 11:43:34 -0800 |
commit | 5efd50fd985cf90d8cd82c8537e26eafe7855200 (patch) | |
tree | 014b8c21f33ff818861bf111e9a0db843034842b | |
parent | ff43c093b646cc3b9b4166a75decc0fa0e436ce9 (diff) |
Fixed another compiler error
-rw-r--r-- | src/node/ext/call.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/ext/call.h b/src/node/ext/call.h index 6c38877d3a..880ce7c451 100644 --- a/src/node/ext/call.h +++ b/src/node/ext/call.h @@ -69,7 +69,7 @@ class Op { v8::Handle<v8::Value> GetOpType() const; protected: - virtual char *GetTypeString() const; + virtual std::string GetTypeString() const; }; struct tag { |