summaryrefslogtreecommitdiff
path: root/include/llvm/LineEditor/LineEditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/LineEditor/LineEditor.h')
-rw-r--r--include/llvm/LineEditor/LineEditor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/LineEditor/LineEditor.h b/include/llvm/LineEditor/LineEditor.h
index 9335e75a56..42839edde0 100644
--- a/include/llvm/LineEditor/LineEditor.h
+++ b/include/llvm/LineEditor/LineEditor.h
@@ -111,7 +111,7 @@ public:
private:
std::string Prompt;
std::string HistoryPath;
- OwningPtr<InternalData> Data;
+ std::unique_ptr<InternalData> Data;
struct CompleterConcept {
virtual ~CompleterConcept();
@@ -145,7 +145,7 @@ private:
T Value;
};
- llvm::OwningPtr<const CompleterConcept> Completer;
+ std::unique_ptr<const CompleterConcept> Completer;
};
}