[llvm] r242304 - Delete declared but not implemented functions.
Rafael Espindola
rafael.espindola at gmail.com
Wed Jul 15 10:19:39 PDT 2015
Author: rafael
Date: Wed Jul 15 12:19:39 2015
New Revision: 242304
URL: http://llvm.org/viewvc/llvm-project?rev=242304&view=rev
Log:
Delete declared but not implemented functions.
Modified:
llvm/trunk/include/llvm/Support/Path.h
Modified: llvm/trunk/include/llvm/Support/Path.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Path.h?rev=242304&r1=242303&r2=242304&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Path.h (original)
+++ llvm/trunk/include/llvm/Support/Path.h Wed Jul 15 12:19:39 2015
@@ -61,7 +61,6 @@ public:
reference operator*() const { return Component; }
pointer operator->() const { return &Component; }
const_iterator &operator++(); // preincrement
- const_iterator &operator++(int); // postincrement
bool operator==(const const_iterator &RHS) const;
bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
@@ -87,7 +86,6 @@ public:
reference operator*() const { return Component; }
pointer operator->() const { return &Component; }
reverse_iterator &operator++(); // preincrement
- reverse_iterator &operator++(int); // postincrement
bool operator==(const reverse_iterator &RHS) const;
bool operator!=(const reverse_iterator &RHS) const { return !(*this == RHS); }
};
More information about the llvm-commits
mailing list