summaryrefslogtreecommitdiff
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, 0 insertions, 14 deletions
diff --git a/contrib/llvm/lib/Support/Optional.cpp b/contrib/llvm/lib/Support/Optional.cpp
deleted file mode 100644
index 2425739c845d..000000000000
--- a/contrib/llvm/lib/Support/Optional.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-//===- 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";
-}