General Purpose library for Freestanding C++ and POSIX systems
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 строки
403 B

4 лет назад
  1. {
  2. "clang.cflags": [
  3. "-std=c11",
  4. "-I${workspaceRoot}/include"
  5. ],
  6. "clang.cxxflags": [
  7. "-std=c++2a",
  8. "-Wall",
  9. "-pedantic",
  10. "-I${workspaceRoot}/include"
  11. ],
  12. "files.associations": {
  13. "optional": "cpp",
  14. "system_error": "cpp",
  15. "istream": "cpp",
  16. "ostream": "cpp",
  17. "ratio": "cpp",
  18. "array": "cpp",
  19. "functional": "cpp",
  20. "tuple": "cpp",
  21. "type_traits": "cpp",
  22. "utility": "cpp"
  23. }
  24. }