[all-commits] [llvm/llvm-project] 6b8cf7: Revert "[Support] Add raw_ostream_iterator: ostrea...
Nicolas Guillemot via All-commits
all-commits at lists.llvm.org
Thu Mar 4 12:47:13 PST 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 6b8cf7356c5a01ee487a610168c146994ff6cff8
https://github.com/llvm/llvm-project/commit/6b8cf7356c5a01ee487a610168c146994ff6cff8
Author: Nicolas Guillemot <nguillemot at apple.com>
Date: 2021-03-04 (Thu, 04 Mar 2021)
Changed paths:
M llvm/include/llvm/Support/raw_ostream.h
M llvm/unittests/Support/raw_ostream_test.cpp
Log Message:
-----------
Revert "[Support] Add raw_ostream_iterator: ostream_iterator for raw_ostream"
This reverts commit 7479a2e00bc41f399942e5106fbdf9b4b0c11506.
This commit causes compile errors on clang-x64-windows-msvc, so I'm
reverting the patch for now.
For reference, the error in question is:
```
error C2280: 'llvm::raw_ostream_iterator<char,char>
&llvm::raw_ostream_iterator<char,char>::operator =(const
llvm::raw_ostream_iterator<char,char> &)': attempting to reference a deleted
function
note: compiler has generated 'llvm::raw_ostream_iterator<char,char>::operator ='
here
note: 'llvm::raw_ostream_iterator<char,char>
&llvm::raw_ostream_iterator<char,char>::operator =(const
llvm::raw_ostream_iterator<char,char> &)': function was implicitly deleted
because 'llvm::raw_ostream_iterator<char,char>' has a data member
'llvm::raw_ostream_iterator<char,char>::OutStream' of reference type
```
More information about the All-commits
mailing list