mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-07-20 08:48:30 +00:00
Remove a bogus const.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@821 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
1b9920afa7
commit
ba5ee2c8f5
|
@ -123,7 +123,7 @@ class ConfigFile {
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
class MinidumpLocation {
|
class MinidumpLocation {
|
||||||
public:
|
public:
|
||||||
MinidumpLocation(const NSString *minidumpDir) {
|
MinidumpLocation(NSString *minidumpDir) {
|
||||||
// Ensure that the path exists. Fallback to /tmp if unable to locate path.
|
// Ensure that the path exists. Fallback to /tmp if unable to locate path.
|
||||||
assert(minidumpDir);
|
assert(minidumpDir);
|
||||||
if (!EnsureDirectoryPathExists(minidumpDir)) {
|
if (!EnsureDirectoryPathExists(minidumpDir)) {
|
||||||
|
|
Loading…
Reference in a new issue