mirror of
https://github.com/Dushistov/sdcv.git
synced 2025-12-23 13:10:50 +00:00
replace array with variable size with vector,
this should help clang compiler to compile our source code
This commit is contained in:
@@ -119,7 +119,7 @@ public:
|
||||
|
||||
glong narticles(int idict) { return oLib[idict]->narticles(); }
|
||||
const std::string& dict_name(int idict) { return oLib[idict]->dict_name(); }
|
||||
gint ndicts() { return oLib.size(); }
|
||||
gint ndicts() const { return oLib.size(); }
|
||||
|
||||
const gchar * poGetWord(glong iIndex,int iLib) {
|
||||
return oLib[iLib]->get_key(iIndex);
|
||||
|
||||
Reference in New Issue
Block a user