# File lib/yard/logging.rb, line 47
    def warn_no_continuations
      return if CONTINUATIONS_SUPPORTED
      return if $NO_CONTINUATION_WARNING
      $NO_CONTINUATION_WARNING = true
      warn "JRuby/MacRuby/Rubinius do not implement Kernel#callcc and cannot " +
           "load files in order. You must specify the correct order manually."
    end