Browse Source

Meta: Make YCM return flags as Python list

As per YCM's own .ycm_extra_conf.py:
```python
final_flags = list( compilation_info.compiler_flags_ )
```
Before this change clangd would crash.
Antoni Duda 9 months ago
parent
commit
51f5da00d7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .ycm_extra_conf.py

+ 1 - 1
.ycm_extra_conf.py

@@ -71,7 +71,7 @@ def Settings(**kwargs):  # noqa: N802
         return {}
 
     return {
-        'flags': compilation_info.compiler_flags_,
+        'flags': list(compilation_info.compiler_flags_),
         'include_paths_relative_to_dir': DIR_OF_THIS_SCRIPT,
         'override_filename': filename
     }