You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffi-clang/lib/ffi/clang/error.rb

13 lines
241 B
Ruby

# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2025, by Samuel Williams.
module FFI
module Clang
# Represents an error that occurred during libclang operations.
class Error < StandardError
end
end
end