diff --git a/uppsrc/Core/Value.cpp b/uppsrc/Core/Value.cpp index abe87f554..314d658fc 100644 --- a/uppsrc/Core/Value.cpp +++ b/uppsrc/Core/Value.cpp @@ -237,15 +237,14 @@ struct Ref::ValueRef : public RefManager { virtual void SetNull(void *ptr) { *(Value *) ptr = Null; } }; - Ref::Ref(String& s) { ptr = &s; m = &Single< RichRef >(); } Ref::Ref(WString& s) { ptr = &s; m = &Single< RichRef >(); } Ref::Ref(int& i) { ptr = &i; m = &Single< RichRef >(); } Ref::Ref(int64& i) { ptr = &i; m = &Single< RichRef >(); } Ref::Ref(double& d) { ptr = &d; m = &Single< RichRef >(); } +Ref::Ref(bool& b) { ptr = &b; m = &Single< RichRef >(); } Ref::Ref(Date& d) { ptr = &d; m = &Single< RichRef >(); } Ref::Ref(Time& t) { ptr = &t; m = &Single< RichRef