Skip to content

Commit 893ecb1

Browse files
committed
Fix hand mistake
Former-commit-id: f59db8e3bf54970b09e61a6aa749c46ce6c63ace [formerly edca3e828c5fea52d1a3c230876b16442fa14fac] [formerly 22c14cb0abb9cc2d83ccdfaac973078ec4a434e1 [formerly 7ac1e0ae89d9c0753452fb457ef957c584f21d36]] Former-commit-id: 6afe38874cbe3c828569713463c5476f25a4f205 [formerly fa6c7fac15e32741d0424d2c325df4b51d1d0137] Former-commit-id: 850f2e53b9e9a3ce9786f67461c8e878974e20a3
1 parent 8da9bc0 commit 893ecb1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Frame/Examples/Example1/Example1Module.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ bool Example1Module::PostInit()
4444
ARK_ASSERT_RET_VAL(m_pScheduleModule != nullptr, false);
4545

4646
AFGUID test_id = AFGUID(0, 1);
47-
for (int i = 0; i < 1000; ++i)
48-
{
49-
ARK_LOG_INFO("Test log, id = {}", test_id.ToString());
50-
}
47+
//for (int i = 0; i < 1000; ++i)
48+
//{
49+
// ARK_LOG_INFO("Test log, id = {}", test_id.ToString());
50+
//}
5151

5252
std::cout << typeid(Example1Module).name() << ", PostInit" << std::endl;
5353

Frame/SDK/Core/Base/AFCDataList.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class AFBaseDataList : public AFIDataList
8888
mnBufferUsed = 0;
8989
}
9090

91-
AFBaseDataList(const char* strSour, int nLengh, char strSplit)
91+
AFBaseDataList(const char* strSour, int nLengh, char strSplit)
9292
{
9393
assert(DATA_SIZE > 0);
9494
assert(BUFFER_SIZE > 0);
@@ -360,7 +360,7 @@ class AFBaseDataList : public AFIDataList
360360
value_size = (size_t)nLength;
361361
}
362362

363-
value_size = + 1;
363+
value_size += 1;
364364
char* data = AddBuffer(value_size);
365365
memcpy(data, value, value_size);
366366

0 commit comments

Comments
 (0)