• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nasa / trick / 25456501308

06 May 2026 07:29PM UTC coverage: 55.935% (-0.8%) from 56.7%
25456501308

Pull #2011

github

web-flow
Merge 7ad262960 into 7054e405e
Pull Request #2011: Single-file CI and code style adoption

14612 of 26123 relevant lines covered (55.94%)

462107.16 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/trick_source/sim_services/MemoryManager/MemoryManager_make_declaration.cpp
1
#include "trick/MemoryManager.hh"
2
#include <sstream>
3

4
std::string Trick::MemoryManager::make_decl_string( TRICK_TYPE type,
×
5
                                  std::string user_type_name,
6
                                  int n_stars,
7
                                  std::string var_name,
8
                                  int n_cdims,
9
                                  int *cdims) {
10

11
    std::stringstream ss;
×
12

13
    ss << trickTypeCharString(type, user_type_name.c_str());
×
14
    for (int ii=0; ii<n_stars; ii++) {
×
15
        ss << "*";
×
16
    }
17
    ss << " ";
×
18
    ss << var_name ;
×
19
    for (int ii=0; ii<n_cdims; ii++) {
×
20
        ss << "[" << cdims[ii] << "]";
×
21
    }
22
    return ss.str();
×
23
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc