~ubuntu-branches/ubuntu/quantal/sunpinyin/quantal

« back to all changes in this revision

Viewing changes to src/pinyin/segmentor.h

  • Committer: Bazaar Package Importer
  • Author(s): Liang Guo
  • Date: 2011-03-15 00:20:57 UTC
  • mfrom: (1.1.2 upstream) (1.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110315002057-k8qf3ybnqtuaf0u1
Tags: 2.0.3-2
* Build with prefix=$(DEB_DESTDIR)/usr (Close: #617752)
* Fix FTBFS on SH (Close: #617753)
* Fix FTBFS on MIPSEL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        }
66
66
 
67
67
        // if segment is a STRING type, m_syllables may contain the string buffer without the '\0'
68
 
        std::vector<unsigned>   m_syllables;
69
 
        unsigned                m_start        : 16;
70
 
        unsigned                m_len          : 8;
71
 
        ESegmentType            m_type         : 7;
72
 
        bool                    m_inner_fuzzy  : 1;
 
68
        std::vector<unsigned>           m_syllables;
 
69
        std::vector<unsigned>           m_fuzzy_syllables;
 
70
        unsigned                        m_start        : 16;
 
71
        unsigned                        m_len          : 8;
 
72
        ESegmentType                    m_type         : 7;
 
73
        bool                            m_inner_fuzzy  : 1;
73
74
    };
74
75
 
75
76
    // it requires the segments are sorted by its m_start field