mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-27 09:58:08 +01:00
Fix mismatch declaration between struct and class
This commit is contained in:
parent
cdbb53f72c
commit
f6999a720d
3 changed files with 4 additions and 4 deletions
|
@ -31,8 +31,8 @@
|
||||||
#include "dic_internals.h"
|
#include "dic_internals.h"
|
||||||
#include "logging.h"
|
#include "logging.h"
|
||||||
|
|
||||||
class DicEdge;
|
struct DicEdge;
|
||||||
class DictHeaderInfo;
|
struct DictHeaderInfo;
|
||||||
class Header;
|
class Header;
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
@ -44,7 +44,7 @@ typedef unsigned char dic_code_t;
|
||||||
struct params_cross_t;
|
struct params_cross_t;
|
||||||
struct params_7plus1_t;
|
struct params_7plus1_t;
|
||||||
struct params_regexp_t;
|
struct params_regexp_t;
|
||||||
class DicEdge;
|
struct DicEdge;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A wdstring is a display string, i.e. it can contain more chars than
|
* A wdstring is a display string, i.e. it can contain more chars than
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
class Dictionary;
|
class Dictionary;
|
||||||
class Node;
|
class Node;
|
||||||
class searchRegExpLists;
|
struct searchRegExpLists;
|
||||||
|
|
||||||
bool parseRegexp(const Dictionary &iDic,
|
bool parseRegexp(const Dictionary &iDic,
|
||||||
const wchar_t *input,
|
const wchar_t *input,
|
||||||
|
|
Loading…
Reference in a new issue