-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E0583: file not found for module #45
Comments
Somewhat related to this, what would you recommend to be the easiest way to mark every/many functions in a crate/mod as |
I thought I had a test for this. Is the |
Yes, it is. I had to specify the full path when doing it from the outside to get it to work: #[flame]
#[path = "/home/coolreader18/.../src/module_name.rs"]
mod module_name; |
That path appears to not be relative to the project. Why?
|
The thing is, it is already in the expected position. It does work without the |
Strange. Flamer does nothing out of the ordinary while handling mods. I don't have time right now to look into this. Can you come up with a minimal example to reproduce the problem? |
When I put a
#![flame]
attribute inside of a module, it gives me an error "file not found for modulemodule_name
". It gives me the same error randomly when I apply it to themod
item in its parent module.The text was updated successfully, but these errors were encountered: