File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,10 @@ project(CodeService)
44
55add_library (CodeService STATIC )
66
7- #add_subdirectory(${LuaCodeStyle_SOURCE_DIR}/3rd/JamSpell-0.0.12 jamspell.out)
8-
97add_dependencies (CodeService LuaParser)
108
119target_include_directories (CodeService PUBLIC
1210 ${LuaCodeStyle_SOURCE_DIR} /include
13- ${LuaCodeStyle_SOURCE_DIR} /3rd/JamSpell-0.0.12/jamspell
1411 src
1512)
1613
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ int LuaTokenParser::GetColumn(int offset)
169169
170170 int bytesLength = offset - lineStartOffset;
171171
172- int utf8Length = utf8nlen (_source.data () + lineStartOffset, bytesLength);
172+ int utf8Length = :: utf8nlen (_source.data () + lineStartOffset, bytesLength);
173173 return utf8Length;
174174}
175175
You can’t perform that action at this time.
0 commit comments