diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-04-18 22:38:49 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-04-18 22:38:49 -0400 |
commit | 4bfb899baac1a531ae08e11549a2311a2f553fea (patch) | |
tree | 68fc48f86c496969b10bf755d2b40d972b519046 | |
parent | 9f76fbba192037994421513673014c97929fd5d2 (diff) | |
parent | c4685293665af1d94d2952e2f90680f2a70768a5 (diff) |
Merge branch 'master' of github.com:redpony/cdec
-rw-r--r-- | rst_parser/global_ff.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rst_parser/global_ff.cc b/rst_parser/global_ff.cc index bb715f18..a7db977d 100644 --- a/rst_parser/global_ff.cc +++ b/rst_parser/global_ff.cc @@ -28,7 +28,7 @@ struct GFFImpl { } }; -GlobalFeatureFunctions::GlobalFeatureFunctions() {} +GlobalFeatureFunctions::GlobalFeatureFunctions() : pimpl(new GFFImpl) {} GlobalFeatureFunctions::~GlobalFeatureFunctions() { delete pimpl; } void GlobalFeatureFunctions::PrepareForInput(const TaggedSentence& sentence) { |