about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-02-02 20:11:22 +0000
committerEric Wong <e@80x24.org>2016-02-02 20:11:22 +0000
commit879bccec2058505f3d5c446595083649169b357c (patch)
treeb498365b6a583b98d999032c164a588dd20f883d /lib
parenta95c89375c43557ebed870b04f499ea66a06b1f2 (diff)
downloadruby_posix_mq-879bccec2058505f3d5c446595083649169b357c.tar.gz
No changes for older Rubies, but this reduces garbage under 2.3
Diffstat (limited to 'lib')
-rw-r--r--lib/posix_mq.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/posix_mq.rb b/lib/posix_mq.rb
index 5424667..2dc6dcf 100644
--- a/lib/posix_mq.rb
+++ b/lib/posix_mq.rb
@@ -1,4 +1,4 @@
-# -*- encoding: binary -*-
+# -*- frozen_string_literal: true -*-
 #
 # This class represents an POSIX message queue descriptor (mqd_t)
 # object.  It matches the C API for POSIX messages queues closely.
@@ -79,7 +79,6 @@ class POSIX_MQ
   # All send/receive operations are atomic and only one
   # native thread may be notified at a time
   alias clone dup
-
 end
 
 require 'posix_mq_ext'