mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175627 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -78,7 +78,7 @@ public:
|
|||||||
~Optional() {
|
~Optional() {
|
||||||
reset();
|
reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
|
const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
|
||||||
T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
|
T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
|
||||||
const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
|
const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
|
||||||
@ -115,7 +115,7 @@ struct simplify_type<Optional<T> >
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator==(const Optional<T> &X, const Optional<U> &Y);
|
void operator==(const Optional<T> &X, const Optional<U> &Y);
|
||||||
@ -124,7 +124,7 @@ void operator==(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator!=(const Optional<T> &X, const Optional<U> &Y);
|
void operator!=(const Optional<T> &X, const Optional<U> &Y);
|
||||||
@ -133,7 +133,7 @@ void operator!=(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator<(const Optional<T> &X, const Optional<U> &Y);
|
void operator<(const Optional<T> &X, const Optional<U> &Y);
|
||||||
@ -142,7 +142,7 @@ void operator<(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator<=(const Optional<T> &X, const Optional<U> &Y);
|
void operator<=(const Optional<T> &X, const Optional<U> &Y);
|
||||||
@ -151,7 +151,7 @@ void operator<=(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator>=(const Optional<T> &X, const Optional<U> &Y);
|
void operator>=(const Optional<T> &X, const Optional<U> &Y);
|
||||||
@ -160,7 +160,7 @@ void operator>=(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
/// explicitly compare the underlying values and account for empty \c Optional
|
/// explicitly compare the underlying values and account for empty \c Optional
|
||||||
/// objects.
|
/// objects.
|
||||||
///
|
///
|
||||||
/// This routine will never be defined. It returns \c void to help diagnose
|
/// This routine will never be defined. It returns \c void to help diagnose
|
||||||
/// errors at compile time.
|
/// errors at compile time.
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator>(const Optional<T> &X, const Optional<U> &Y);
|
void operator>(const Optional<T> &X, const Optional<U> &Y);
|
||||||
|
Reference in New Issue
Block a user