File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,14 +19,11 @@ namespace Json {
1919 * the page size, the number of object in each page).
2020 *
2121 * It does not allow the destruction of a single object. All the allocated
22- *objects
23- * can be destroyed at once. The memory can be either released or reused for
24- *future
25- * allocation.
22+ * objects can be destroyed at once. The memory can be either released or reused
23+ * for future allocation.
2624 *
2725 * The in-place new operator must be used to construct the object using the
28- *pointer
29- * returned by allocate.
26+ * pointer returned by allocate.
3027 */
3128template <typename AllocatedType, const unsigned int objectPerAllocation>
3229class BatchAllocator {
Original file line number Diff line number Diff line change 1616#include < istream>
1717
1818#if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
19- # pragma warning(disable \
20- : 4996 ) // disable warning about strdup being deprecated.
19+ // Disable warning about strdup being deprecated.
20+ # pragma warning(disable : 4996)
2121#endif
2222
2323namespace Json {
Original file line number Diff line number Diff line change 1515#include < iomanip>
1616
1717#if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
18- # pragma warning(disable \
19- : 4996 ) // disable warning about strdup being deprecated.
18+ // Disable warning about strdup being deprecated.
19+ # pragma warning(disable : 4996)
2020#endif
2121
2222namespace Json {
You can’t perform that action at this time.
0 commit comments