Kaydet (Commit) 050f3422 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

std::unique_ptr is C++11 specific. Let's use boost::shared_ptr for now.

Change-Id: I549dd62bfb5c14993a3f600a388cd716b3ff7401
üst 2dda5e67
......@@ -106,7 +106,7 @@ protected:
class SlidingFunctionBase
{
public:
typedef std::unique_ptr<DynamicKernelArgument> SubArgument;
typedef boost::shared_ptr<DynamicKernelArgument> SubArgument;
typedef std::vector<SubArgument> SubArguments;
virtual void GenSlidingWindowFunction(std::stringstream &,
const std::string, SubArguments &) = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment