Skip to content

Commit

Permalink
drop comments
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenbauer committed Mar 18, 2024
1 parent bddd985 commit fd32746
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/macro_impl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ function _maybe_handle_atsection_blocks!(args)
if kind.value == :critical
@gensym critical_lock
init_lock_ex = :($(critical_lock) = $(Base.ReentrantLock()))
# init_lock_ex = esc(:($(critical_lock) = $(Base.ReentrantLock())))
push!(setup_sections.args, init_lock_ex)
args[i] = quote
$(esc(:lock))($(critical_lock)) do
Expand All @@ -239,7 +238,6 @@ function _maybe_handle_atsection_blocks!(args)
end
elseif kind.value == :single
@gensym single_section
# init_single_section_ex = esc(:($(single_section) = $(SectionSingle())))
init_single_section_ex = :($(single_section) = $(SectionSingle()))
push!(setup_sections.args, init_single_section_ex)
args[i] = quote
Expand Down

0 comments on commit fd32746

Please sign in to comment.