Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions src/callstack.cr
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
{% if flag?(:win32) %}
struct CallStack
def self.skip(*args)
# do nothing
end
end

{% skip_file() %}
{% end %}
{% skip_file() if flag?(:win32) %}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can probably use skip_file here

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I was waiting for #5493 to make this change all at once.


require "c/dlfcn"
require "c/stdio"
Expand Down
Loading