Advertisement
gabrieleb

settings.json (for vscode clangd extension)

May 11th, 2024 (edited)
875
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.01 KB | Source Code | 0 0
  1. {
  2.   "files.associations": {
  3.     "iostream": "cpp",
  4.     "cstdint": "cpp",
  5.     "optional": "cpp",
  6.     "istream": "cpp",
  7.     "ostream": "cpp",
  8.     "system_error": "cpp",
  9.     "array": "cpp",
  10.     "tuple": "cpp",
  11.     "type_traits": "cpp",
  12.     "utility": "cpp",
  13.     "fstream": "cpp",
  14.     "atomic": "cpp",
  15.     "*.tcc": "cpp",
  16.     "cctype": "cpp",
  17.     "clocale": "cpp",
  18.     "cmath": "cpp",
  19.     "cstdarg": "cpp",
  20.     "cstddef": "cpp",
  21.     "cstdio": "cpp",
  22.     "cstdlib": "cpp",
  23.     "cwchar": "cpp",
  24.     "cwctype": "cpp",
  25.     "deque": "cpp",
  26.     "unordered_map": "cpp",
  27.     "vector": "cpp",
  28.     "exception": "cpp",
  29.     "algorithm": "cpp",
  30.     "memory": "cpp",
  31.     "memory_resource": "cpp",
  32.     "string": "cpp",
  33.     "string_view": "cpp",
  34.     "initializer_list": "cpp",
  35.     "iosfwd": "cpp",
  36.     "limits": "cpp",
  37.     "new": "cpp",
  38.     "sstream": "cpp",
  39.     "stdexcept": "cpp",
  40.     "streambuf": "cpp",
  41.     "typeinfo": "cpp"
  42.   },
  43.   "clangd.fallbackFlags": [
  44.     "-I${workspaceFolder}/include",
  45.   ]
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement