Skip to content

Commit

Permalink
Add cast to silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bocchino committed Feb 27, 2024
1 parent bc20279 commit 73507a3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Svc/DpManager/DpManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,27 @@ class DpManager : public DpManagerComponentBase {
// ----------------------------------------------------------------------

static_assert(
DpManager::NUM_PRODUCTGETIN_INPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_PRODUCTGETIN_INPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 24 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`PRODUCTGETIN` is not a recognized word. (unrecognized-spelling)
"Number of product get in ports must equal DpManagerNumPorts"
);
static_assert(
DpManager::NUM_PRODUCTREQUESTIN_INPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_PRODUCTREQUESTIN_INPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 28 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`PRODUCTREQUESTIN` is not a recognized word. (unrecognized-spelling)
"Number of product request in ports must equal DpManagerNumPorts"
);
static_assert(
DpManager::NUM_PRODUCTRESPONSEOUT_OUTPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_PRODUCTRESPONSEOUT_OUTPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 32 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`PRODUCTRESPONSEOUT` is not a recognized word. (unrecognized-spelling)
"Number of product response out ports must equal DpManagerNumPorts"
);
static_assert(
DpManager::NUM_BUFFERGETOUT_OUTPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_BUFFERGETOUT_OUTPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 36 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`BUFFERGETOUT` is not a recognized word. (unrecognized-spelling)
"Number of buffer get out ports must equal DpManagerNumPorts"
);
static_assert(
DpManager::NUM_PRODUCTSENDIN_INPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_PRODUCTSENDIN_INPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 40 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`PRODUCTSENDIN` is not a recognized word. (unrecognized-spelling)
"Number of product send in ports must equal DpManagerNumPorts"
);
static_assert(
DpManager::NUM_PRODUCTSENDOUT_OUTPUT_PORTS == DpManagerNumPorts,
DpManager::NUM_PRODUCTSENDOUT_OUTPUT_PORTS == static_cast<FwSizeType>(DpManagerNumPorts),

Check failure on line 44 in Svc/DpManager/DpManager.hpp

View workflow job for this annotation

GitHub Actions / Spell checking

`PRODUCTSENDOUT` is not a recognized word. (unrecognized-spelling)
"Number of product send out ports must equal DpManagerNumPorts"
);

Expand Down

0 comments on commit 73507a3

Please sign in to comment.