scui added inline comments.

================
Comment at: clang/lib/Frontend/CompilerInvocation.cpp:666
+  // semantics as the original.
+  SmallVector<const char *> GeneratedArgs1;
+  Generate(DummyInvocation, GeneratedArgs1, SA);
----------------
This is failing our build, This line and line 686. The msg is:

llvm-project/clang/lib/Frontend/CompilerInvocation.cpp:666:3: error: too few 
template arguments for class template 'SmallVector'
  SmallVector<const char *> GeneratedArgs1;
  ^
llvm-project/clang/include/clang/Basic/LLVM.h:35:42: note: template is declared 
here
  template<typename T, unsigned N> class SmallVector;
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~       ^
llvm-project/clang/lib/Frontend/CompilerInvocation.cpp:686:3: error: too few 
template arguments for class template 'SmallVector'
  SmallVector<const char *> GeneratedArgs2;
  ^
llvm-project/clang/include/clang/Basic/LLVM.h:35:42: note: template is declared 
here
  template<typename T, unsigned N> class SmallVector;
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~       ^
2 errors generated.



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96280/new/

https://reviews.llvm.org/D96280

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to