Remove duplicate semicolons

This commit is contained in:
Gunnar Beutner 2018-01-24 12:07:52 +01:00
parent 361fed8ba0
commit 0cc9af6bee
4 changed files with 4 additions and 4 deletions

View File

@ -303,7 +303,7 @@ DebugInfo ScriptError::GetDebugInfo() const
bool ScriptError::IsIncompleteExpression() const bool ScriptError::IsIncompleteExpression() const
{ {
return m_IncompleteExpr;; return m_IncompleteExpr;
} }
bool ScriptError::IsHandledByDebugger() const bool ScriptError::IsHandledByDebugger() const

View File

@ -122,7 +122,7 @@ void ThreadPool::WorkerThread::ThreadProc(Queue& queue)
UpdateUtilization(ThreadBusy); UpdateUtilization(ThreadBusy);
} }
double st = Utility::GetTime();; double st = Utility::GetTime();
#ifdef I2_DEBUG #ifdef I2_DEBUG
# ifdef RUSAGE_THREAD # ifdef RUSAGE_THREAD

View File

@ -48,7 +48,7 @@ Value MacroProcessor::ResolveMacros(const Value& str, const ResolverList& resolv
result = InternalResolveMacros(str, resolvers, cr, missingMacro, escapeFn, result = InternalResolveMacros(str, resolvers, cr, missingMacro, escapeFn,
resolvedMacros, useResolvedMacros, recursionLevel + 1); resolvedMacros, useResolvedMacros, recursionLevel + 1);
} else if (str.IsObjectType<Array>()) { } else if (str.IsObjectType<Array>()) {
ArrayData resultArr;; ArrayData resultArr;
Array::Ptr arr = str; Array::Ptr arr = str;
ObjectLock olock(arr); ObjectLock olock(arr);

View File

@ -81,7 +81,7 @@ void ApiClient::TypesHttpCompletionCallback(HttpRequest& request, HttpResponse&
ObjectLock olock(results); ObjectLock olock(results);
for (const Dictionary::Ptr typeInfo : results) for (const Dictionary::Ptr typeInfo : results)
{ {
ApiType::Ptr type = new ApiType();; ApiType::Ptr type = new ApiType();
type->Abstract = typeInfo->Get("abstract"); type->Abstract = typeInfo->Get("abstract");
type->BaseName = typeInfo->Get("base"); type->BaseName = typeInfo->Get("base");
type->Name = typeInfo->Get("name"); type->Name = typeInfo->Get("name");