Revision: ebd49fcf2059
Author: Landon Fuller <
lan...@plausible.coop>
Date: Thu Jul 11 14:35:46 2013
Log: Clean up spurious changes from previous commit.
http://code.google.com/p/plcrashreporter/source/detail?r=ebd49fcf2059
Modified:
/Source/PLCrashReport.h
/Source/PLCrashReportTextFormatter.m
=======================================
--- /Source/PLCrashReport.h Thu Jul 11 14:07:21 2013
+++ /Source/PLCrashReport.h Thu Jul 11 14:35:46 2013
@@ -41,12 +41,6 @@
#import "PLCrashReportSystemInfo.h"
#import "PLCrashReportThreadInfo.h"
-#import <AvailabilityMacros.h>
-
-#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_8 ||
__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_6_0
-#define PLCRASH_PRIVATE_HAS_NSUUID 1
-#endif
-
/**
* @ingroup constants
* Crash file magic identifier */
=======================================
--- /Source/PLCrashReportTextFormatter.m Thu Jul 11 14:07:21 2013
+++ /Source/PLCrashReportTextFormatter.m Thu Jul 11 14:35:46 2013
@@ -46,7 +46,6 @@
@interface PLCrashReportTextFormatter (PrivateAPI)
NSInteger binaryImageSort(id binary1, id binary2, void *context);
-
+ (NSString *) formatStackFrame: (PLCrashReportStackFrameInfo *) frameInfo
frameIndex: (NSUInteger) frameIndex
report: (PLCrashReport *) report
@@ -59,6 +58,7 @@
*/
@implementation PLCrashReportTextFormatter
+
/**
* Formats the provided @a report as human-readable text in the given @a
textFormat, and return
* the formatted result as a string.
@@ -511,7 +511,6 @@
lp64 ? 16 : 8, frameInfo.instructionPointer,
symbolString];
}
-
/**
* Sort PLCrashReportBinaryImageInfo instances by their starting address.