Updates from BitShares FC #22

Closed
nathanielhourt wants to merge 693 commits from dapp-support into latest-fc
Showing only changes of commit 9ba8886c8b - Show all commits

View file

@ -91,7 +91,8 @@ namespace fc {
{
static const char* name()
{
return (std::string("fc::smart_ref<") + get_typename<T>::name() + std::string(">")).c_str();
static std::string n = std::string("fc::smart_ref<") + get_typename<T>::name() + std::string(">");
return n.c_str();
}
};