aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Debugging
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-06-16 22:17:27 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2014-06-16 22:17:27 +0200
commit97ccfdb625955d354d17e84f5833e5be3d847351 (patch)
tree0d77cd6a682e6fb1e4f8802e8e9a87fabc49180a /src/server/shared/Debugging
parent85e37db96a7454987d4ffc9be59462cfecf85e9a (diff)
parent24d834af17c2a9b22225f4381082acd2016c70ef (diff)
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Conflicts: src/server/game/Spells/Auras/SpellAuraEffects.cpp
Diffstat (limited to 'src/server/shared/Debugging')
-rw-r--r--src/server/shared/Debugging/WheatyExceptionReport.cpp4
-rw-r--r--src/server/shared/Debugging/WheatyExceptionReport.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/server/shared/Debugging/WheatyExceptionReport.cpp b/src/server/shared/Debugging/WheatyExceptionReport.cpp
index 691546ac2fc..d5ad7f15a04 100644
--- a/src/server/shared/Debugging/WheatyExceptionReport.cpp
+++ b/src/server/shared/Debugging/WheatyExceptionReport.cpp
@@ -1139,7 +1139,7 @@ bool logChildren)
dataKind == DataIsGlobal ||
dataKind == DataIsStaticMember)
continue;
-
+
symbolDetails.top().HasChildren = true;
if (!logChildren)
@@ -1296,7 +1296,7 @@ DWORD_PTR WheatyExceptionReport::DereferenceUnsafePointer(DWORD_PTR address)
return *(PDWORD_PTR)address;
}
__except (EXCEPTION_EXECUTE_HANDLER)
- {
+ {
return DWORD_PTR(-1);
}
}
diff --git a/src/server/shared/Debugging/WheatyExceptionReport.h b/src/server/shared/Debugging/WheatyExceptionReport.h
index e57ed3fb8f7..9137b91aac9 100644
--- a/src/server/shared/Debugging/WheatyExceptionReport.h
+++ b/src/server/shared/Debugging/WheatyExceptionReport.h
@@ -120,7 +120,7 @@ struct SymbolDetail
if (!formatted.empty())
formatted += " ";
formatted += Name;
- }
+ }
if (!Value.empty())
formatted += " = " + Value;
return formatted;