aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/lib/Support/Optional.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/Support/Optional.cpp')
-rw-r--r--contrib/llvm/lib/Support/Optional.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Support/Optional.cpp b/contrib/llvm/lib/Support/Optional.cpp
new file mode 100644
index 000000000000..2425739c845d
--- /dev/null
+++ b/contrib/llvm/lib/Support/Optional.cpp
@@ -0,0 +1,14 @@
+//===- Optional.cpp - Optional values ---------------------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/ADT/Optional.h"
+#include "llvm/Support/raw_ostream.h"
+
+llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, NoneType) {
+ return OS << "None";
+}