General Purpose library for Freestanding C++ and POSIX systems
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
403 B

  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. }