- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does anyone know a way to get inlined module functions. I find that if I put the module in the same file as the caller, the functions seem to inline, but if the module is not in the same file they don't. I would really like to be able to get the speed of inlining, but the convenience of module separation.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry - inlining happens only when the compiler sees the source of the caller and callee together.
What you can do for your "release" configuration is have the project consist of a single source file that INCLUDEs all the other sources. For development, have another project that is the separate sources. They can live in the same workspace and you can easily switch among them.
Steve
What you can do for your "release" configuration is have the project consist of a single source file that INCLUDEs all the other sources. For development, have another project that is the separate sources. They can live in the same workspace and you can easily switch among them.
Steve
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page