Fix mismatch declaration between struct and class

This commit is contained in:
Olivier Teulière 2013-02-07 23:33:04 +01:00
parent cdbb53f72c
commit f6999a720d
3 changed files with 4 additions and 4 deletions

View file

@ -31,8 +31,8 @@
#include "dic_internals.h"
#include "logging.h"
class DicEdge;
class DictHeaderInfo;
struct DicEdge;
struct DictHeaderInfo;
class Header;
using namespace std;

View file

@ -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

View file

@ -23,7 +23,7 @@
class Dictionary;
class Node;
class searchRegExpLists;
struct searchRegExpLists;
bool parseRegexp(const Dictionary &iDic,
const wchar_t *input,