@@ -133,10 +133,10 @@ BSLS_IDENT("$Id: $")
133
133
//
134
134
// // ...
135
135
//
136
+ // /// Return `true` if the specified initial `numElement` in the specified
137
+ // /// `array1` and `array2` have the same values, and `false` otherwise.
136
138
// static
137
139
// bool areEqual(const short *array1, const short *array2, int numElement)
138
- // // Return 'true' if the specified initial 'numElement' in the specified
139
- // // 'array1' and 'array2' have the same values, and 'false' otherwise.
140
140
// {
141
141
// for (int i = 0; i < numElement; ++i) {
142
142
// if (array1[i] != array2[i]) return false;
@@ -236,8 +236,7 @@ class TestAllocatorException : public std::bad_alloc {
236
236
// / that indicates an allocation request size.
237
237
explicit TestAllocatorException (size_type numBytes);
238
238
239
- // / Destroy this object. Note that this method's definition is compiler
240
- // / generated.
239
+ // / Destroy this object.
241
240
// ! ~TestAllocatorException();
242
241
243
242
// ACCESSORS
@@ -284,18 +283,7 @@ TestAllocatorException::what() const BSLS_EXCEPTION_VIRTUAL_NOTHROW
284
283
}
285
284
286
285
} // close package namespace
287
-
288
- #ifndef BDE_OPENSOURCE_PUBLICATION // BACKWARD_COMPATIBILITY
289
- // ============================================================================
290
- // BACKWARD COMPATIBILITY
291
- // ============================================================================
292
-
293
- // / This alias is defined for backward compatibility.
294
- typedef bslma::TestAllocatorException bslma_TestAllocatorException;
295
- #endif // BDE_OPENSOURCE_PUBLICATION -- BACKWARD_COMPATIBILITY
296
-
297
286
} // close enterprise namespace
298
-
299
287
#endif
300
288
301
289
// ----------------------------------------------------------------------------
0 commit comments