Skip to content
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

Module Annotations do not Display as Doxy Comment in Generated .cpp Files #2660

Open
alextsagkas opened this issue Apr 4, 2024 · 0 comments
Labels

Comments

@alextsagkas
Copy link

FPP Version 2.0.2
Affected Component all

Problem Description

Modules are not annotable as claimed in the FPP User's Guide.

How to Reproduce

  1. Create a file.fpp with the following contents:
@ This is a module
module M {
  constant a = 1
}
  1. Run the command fpp-to-cpp file.fpp
  2. Inspect the generated file to spot the missing doxy comment.

Expected Behavior

The output of the generated file should be:

#! This is a module
namespace M {

  enum FppConstant_a {
    a = 1
  };

}
@alextsagkas alextsagkas added the bug label Apr 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant