Skip to content

Commit 59dcfb9

Browse files
committed
Added explicit require statement.
1 parent a5de13c commit 59dcfb9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/concurrent/atomic/thread_local_var.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
require 'concurrent/atomic/atomic_fixnum'
2+
13
module Concurrent
24

35
module ThreadLocalSymbolAllocator
46

5-
COUNTER = AtomicFixnum.new
7+
COUNTER = Concurrent::AtomicFixnum.new
68

79
protected
810

0 commit comments

Comments
 (0)