Files
scylladb/cql3/functions/functions.cc
2015-01-14 17:12:08 +02:00

16 lines
230 B
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*/
#include "functions.hh"
namespace cql3 {
namespace functions {
thread_local std::unordered_multimap<function_name, shared_ptr<function>> functions::_declared = init();
}
}