polish code
authorPeng Wu <alexepico@gmail.com>
Mon, 1 Apr 2013 09:49:41 +0000 (17:49 +0800)
committerPeng Wu <alexepico@gmail.com>
Mon, 1 Apr 2013 09:49:41 +0000 (17:49 +0800)
tests/storage/test_parser2.cpp
utils/storage/gen_pinyin_table.cpp

index cc330e9..638cd96 100644 (file)
@@ -52,13 +52,6 @@ using namespace pinyin;
 
 
 int main(int argc, char * argv[]) {
-    PinyinParser2 * parser = NULL;
-    ChewingKeyVector keys = g_array_new(FALSE, FALSE, sizeof(ChewingKey));
-    ChewingKeyRestVector key_rests =
-        g_array_new(FALSE, FALSE, sizeof(ChewingKeyRest));
-
-    pinyin_option_t options = PINYIN_CORRECT_ALL | USE_TONE | USE_RESPLIT_TABLE;
-
     GError * error = NULL;
     GOptionContext * context;
 
@@ -69,9 +62,15 @@ int main(int argc, char * argv[]) {
         exit(EINVAL);
     }
 
+    pinyin_option_t options = PINYIN_CORRECT_ALL | USE_TONE | USE_RESPLIT_TABLE;
     if (incomplete)
         options |= PINYIN_INCOMPLETE | CHEWING_INCOMPLETE;
 
+    PinyinParser2 * parser = NULL;
+    ChewingKeyVector keys = g_array_new(FALSE, FALSE, sizeof(ChewingKey));
+    ChewingKeyRestVector key_rests =
+        g_array_new(FALSE, FALSE, sizeof(ChewingKeyRest));
+
     /* create the parser */
     if (strcmp("fullpinyin", parsername) == 0) {
         parser = new FullPinyinParser2();
index 42c68cb..8020e22 100644 (file)
@@ -24,8 +24,8 @@
 #include <glib.h>
 #include "pinyin_internal.h"
 
-static const gchar * outputfile = "temp.out";
 static gint phrase_index = 0;
+static const gchar * outputfile = "temp.out";
 
 static GOptionEntry entries[] =
 {