Merge "Remove extra semicolon at end of namespace"

This commit is contained in:
Treehugger Robot 2018-04-11 00:29:29 +00:00 committed by Gerrit Code Review
commit 1d2bf45b55
7 changed files with 8 additions and 8 deletions

View file

@ -81,8 +81,8 @@ enum {
# define NO_ERROR 0L
#endif
}; // namespace android
} // namespace android
// ---------------------------------------------------------------------------
#endif // ANDROID_ERRORS_H

View file

@ -69,4 +69,4 @@ public:
virtual ~VirtualLightRefBase() = default;
};
}; // namespace android
} // namespace android

View file

@ -683,7 +683,7 @@ void move_backward_type(wp<TYPE>* d, wp<TYPE> const* s, size_t n) {
ReferenceMover::move_references(d, s, n);
}
}; // namespace android
} // namespace android
// ---------------------------------------------------------------------------

View file

@ -243,7 +243,7 @@ inline String16::operator const char16_t*() const
return mString;
}
}; // namespace android
} // namespace android
// ---------------------------------------------------------------------------

View file

@ -239,7 +239,7 @@ void sp<T>::set_pointer(T* ptr) {
m_ptr = ptr;
}
}; // namespace android
} // namespace android
// ---------------------------------------------------------------------------

View file

@ -329,7 +329,7 @@ template <typename T> inline hash_t hash_type(T* const & value) {
return hash_type(uintptr_t(value));
}
}; // namespace android
} // namespace android
// ---------------------------------------------------------------------------

View file

@ -35,6 +35,6 @@ typedef void (*sysprop_change_callback)(void);
void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
void report_sysprop_change();
}; // namespace android
} // namespace android
#endif // _LIBS_UTILS_MISC_H