Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2015-10-02 22:24:10 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-10-16 22:03:22 +0300
commitfbaeccb7725a1f141d34d6068a05ac23211e5f1a (patch)
tree74bd28782022a711412c5d232436241ca1a90649 /moses-cmd
parentcfb1ab34c7d3178e4264d5bba876ddef6125e18f (diff)
use util::StringStream
Diffstat (limited to 'moses-cmd')
-rw-r--r--moses-cmd/Main.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/moses-cmd/Main.cpp b/moses-cmd/Main.cpp
index 07e833f73..5ee99e2db 100644
--- a/moses-cmd/Main.cpp
+++ b/moses-cmd/Main.cpp
@@ -28,13 +28,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
/** main function of the command line version of the decoder **/
int main(int argc, char** argv)
{
- std::string output;
- util::StringStream strme2(output);
- strme2 << StringPiece("JJJJ");
- strme2 << std::string("kkkk");
-
- std::cout << output;
-
return decoder_main(argc, argv);
}