[llvm] 1811061 - TGLexer.h - add missing <vector> include.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 21 03:57:21 PDT 2020


Author: Simon Pilgrim
Date: 2020-04-21T11:57:10+01:00
New Revision: 1811061c387baeff59446a090890368da3d86d42

URL: https://github.com/llvm/llvm-project/commit/1811061c387baeff59446a090890368da3d86d42
DIFF: https://github.com/llvm/llvm-project/commit/1811061c387baeff59446a090890368da3d86d42.diff

LOG: TGLexer.h - add missing <vector> include.
Looks like we are implicitly depending on <vector> but not all machines will include it.

Added: 
    

Modified: 
    llvm/lib/TableGen/TGLexer.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/TableGen/TGLexer.h b/llvm/lib/TableGen/TGLexer.h
index fe6792611119..5b3b0a44e3ef 100644
--- a/llvm/lib/TableGen/TGLexer.h
+++ b/llvm/lib/TableGen/TGLexer.h
@@ -21,6 +21,7 @@
 #include <memory>
 #include <set>
 #include <string>
+#include <vector>
 
 namespace llvm {
 template <typename T> class ArrayRef;


        


More information about the llvm-commits mailing list