Skip to content

Commit

Permalink
Fix code style format
Browse files Browse the repository at this point in the history
***NO_CI***
  • Loading branch information
josesimoes committed Feb 15, 2023
1 parent ee07b5a commit c65b0c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/CLR/Debugger/Debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ HRESULT CLR_DBG_Debugger::CreateListOfCalls(
NANOCLR_NOCLEANUP();
}

#endif //#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)
#endif // #if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

////////////////////////////////////////////////////////////////////////////////////////////////////

Expand Down Expand Up @@ -2311,7 +2311,7 @@ bool CLR_DBG_Debugger::Debugging_Thread_Get(WP_Message *msg)
// If we are a thread spawned by the debugger to perform evaluations,
// return the thread object that correspond to thread that has focus in debugger.
th = th->m_realThread;
#endif //#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)
#endif // #if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

// Find an existing managed thread, if it exists
// making sure to only return the managed object association with the current appdomain
Expand Down Expand Up @@ -3093,7 +3093,7 @@ bool CLR_DBG_Debugger::Debugging_Value_AllocateArray(WP_Message *msg)
return true;
}

#endif //#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)
#endif // #if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

#if defined(NANOCLR_PROFILE_NEW)
bool CLR_DBG_Debugger::Profiling_Command(WP_Message *msg)
Expand Down Expand Up @@ -3158,7 +3158,7 @@ bool CLR_DBG_Debugger::Profiling_FlushStream(WP_Message *msg)
return true;
}

#endif //#if defined(NANOCLR_PROFILE_NEW)
#endif // #if defined(NANOCLR_PROFILE_NEW)

#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

Expand Down Expand Up @@ -3637,7 +3637,7 @@ bool CLR_DBG_Debugger::Debugging_Resolve_VirtualMethod(WP_Message *msg)
return true;
}

#endif //#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)
#endif // #if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

//--//

Expand Down Expand Up @@ -3805,4 +3805,4 @@ bool CLR_DBG_Debugger::Debugging_Info_SetJMC(WP_Message *msg)
}
}

#endif //#if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)
#endif // #if defined(NANOCLR_ENABLE_SOURCELEVELDEBUGGING)

0 comments on commit c65b0c6

Please sign in to comment.