mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-25 21:59:30 +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 "logging.h"
|
||||
|
||||
class DicEdge;
|
||||
class DictHeaderInfo;
|
||||
struct DicEdge;
|
||||
struct DictHeaderInfo;
|
||||
class Header;
|
||||
|
||||
using namespace std;
|
||||
|
|
|
@ -44,7 +44,7 @@ typedef unsigned char dic_code_t;
|
|||
struct params_cross_t;
|
||||
struct params_7plus1_t;
|
||||
struct params_regexp_t;
|
||||
class DicEdge;
|
||||
struct DicEdge;
|
||||
|
||||
/**
|
||||
* A wdstring is a display string, i.e. it can contain more chars than
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
class Dictionary;
|
||||
class Node;
|
||||
class searchRegExpLists;
|
||||
struct searchRegExpLists;
|
||||
|
||||
bool parseRegexp(const Dictionary &iDic,
|
||||
const wchar_t *input,
|
||||
|
|
Loading…
Reference in a new issue