forked from OSchip/llvm-project
Revert "Fix windows buildbots - missing include and namespace"
This reverts commit r303078. One test is still failing even after this: http://green.lab.llvm.org/green/job/clang-stage1-configure-RA_check/31374/consoleFull#18373900728254eaf0-7326-4999-85b0-388101f2d404 llvm-svn: 303093
This commit is contained in:
parent
716cad8bb7
commit
6cd179893d
|
@ -29,7 +29,7 @@ DocVersion DraftStore::getVersion(PathRef File) const {
|
|||
return It->second.Version;
|
||||
}
|
||||
|
||||
DocVersion DraftStore::updateDraft(PathRef File, llvm::StringRef Contents) {
|
||||
DocVersion DraftStore::updateDraft(PathRef File, StringRef Contents) {
|
||||
std::lock_guard<std::mutex> Lock(Mutex);
|
||||
|
||||
auto &Entry = Drafts[File];
|
||||
|
|
|
@ -45,7 +45,7 @@ public:
|
|||
|
||||
/// Replace contents of the draft for \p File with \p Contents.
|
||||
/// \return The new version of the draft for \p File.
|
||||
DocVersion updateDraft(PathRef File, llvm::StringRef Contents);
|
||||
DocVersion updateDraft(PathRef File, StringRef Contents);
|
||||
/// Remove the contents of the draft
|
||||
/// \return The new version of the draft for \p File.
|
||||
DocVersion removeDraft(PathRef File);
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include "llvm/ADT/StringMap.h"
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <vector>
|
||||
|
||||
namespace clang {
|
||||
|
||||
|
|
Loading…
Reference in New Issue