Merge "base: remove Errorf/ErrnoErrorf work around" am: b9ac1178aa

Change-Id: I66fea07333752e2c149dba8963c583cf72d781de
This commit is contained in:
Treehugger Robot 2020-02-18 05:30:16 +00:00
commit 2ef5b50b56

View file

@ -191,11 +191,6 @@ inline int ErrorCode(int code, T&& t, const Args&... args) {
return ErrorCode(code, args...);
}
// TODO(tomcherry): Remove this once we've removed all `using android::base::Errorf` and `using
// android::base::ErrnoErrorf` lines.
enum Errorf {};
enum ErrnoErrorf {};
template <typename T, typename... Args>
inline Error ErrorfImpl(const T&& fmt, const Args&... args) {
return Error(false, ErrorCode(0, args...), fmt::format(fmt, args...));