From a10eea6e4ce647061813519d5b0ea496f29495b9 Mon Sep 17 00:00:00 2001
From: leonard Wu <364452445@qq.com>
Date: 星期四, 09 八月 2018 09:47:08 +0800
Subject: [PATCH] 同步最新svn内容
---
Assets/Editor/MemoryProfiler/BytesAndOffset.cs | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/Assets/Editor/MemoryProfiler/BytesAndOffset.cs b/Assets/Editor/MemoryProfiler/BytesAndOffset.cs
index 30b372c..366e15b 100644
--- a/Assets/Editor/MemoryProfiler/BytesAndOffset.cs
+++ b/Assets/Editor/MemoryProfiler/BytesAndOffset.cs
@@ -23,25 +23,25 @@
public Int32 ReadInt32()
{
return BitConverter.ToInt32(bytes, offset);
- }
-
- public Int64 ReadInt64()
- {
- return BitConverter.ToInt64(bytes, offset);
- }
-
+ }
+
+ public Int64 ReadInt64()
+ {
+ return BitConverter.ToInt64(bytes, offset);
+ }
+
public BytesAndOffset Add(int add)
{
return new BytesAndOffset() {bytes = bytes, offset = offset + add, pointerSize = pointerSize};
}
public void WritePointer(UInt64 value)
- {
- for (int i = 0; i < pointerSize; i++)
- {
- bytes[i + offset] = (byte)value;
- value >>= 8;
- }
+ {
+ for (int i = 0; i < pointerSize; i++)
+ {
+ bytes[i + offset] = (byte)value;
+ value >>= 8;
+ }
}
public BytesAndOffset NextPointer()
--
Gitblit v1.8.0