Questions tagged [cevelop]

Cevelop extends Eclipse CDT with many additional features: CUTE unit testing with Test Driven Development support, new refactorings and quick fixes. It is a one-stop download that includes all the plug-ins that you need to develop modern C++ code.

Cevelop extends Eclipse CDT with many additional features: CUTE unit testing with Test Driven Development support, new refactorings and quick fixes

7 questions
2
votes
0 answers

Autocomplete and resolve in Eclipse/Cevelop for mongocxx and bsoncxx libraries

I'm using mongocxx and bsoncxx libraries in latest Cevelop (Eclipse based) IDE. Sample code: bsoncxx::builder::basic::document builder {}; // no red lines // fill the doc here ... bsoncxx::document::value document = builder.extract(); // can't…
1
vote
1 answer

Cevelop objects to un-initialized variable char junk

Cevelop objects to char junk as an "un-initialized variable". What is the correct way to address the issue in this case? friend std::ostream& operator<<(std::ostream& os_a, College& college_a) { return os_a << college_a.id_ + ' ' +…
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72
1
vote
0 answers

Error when installing and launching cevelop for first time on mac

I am trying to install Cevelop on my mac (Sierra 10.12.6) and after downloading and installing Cevelop from the download site and trying to launch, I am getting the following error log. I have installed Java 8. What am I doing wrong? !SESSION Thu…
bigmugcup
  • 1,321
  • 4
  • 15
  • 26
1
vote
2 answers

Meaning of Cevelop message "add argument(s) '?' to match 'not_severe_error(?)'"?

I have added to functioning code this: auto not_severe_error(int a_code){return (a_code>=0);} and changed: if(rc>=0) to: if(not_severe_error()) What is the meaning of: Add argument(s) '?' to match 'not_severe_error(?)'
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72
1
vote
1 answer

Cevelop -- setting C++ macro value at compile time from an environment variable?

In my existing compile command line I use this switch to define a macro from the command line: -DSsvid_UsrName=\"$USER\" Using Cevelop 1.4, I added: Project > Properties C/C++ Build > Environment Environment variables to set > Add... Name:…
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72
0
votes
0 answers

BzrEclipse plugin install not working

I have followed the BzrEclipse Installation instructions installed Eclipse 4.3 (Kepler) recommended, have 4.7 installed bzr 2.5+ required, have 2.8 Followed 'Installation - Within Eclipse 4.2 Juno' Install New Software instructions section for…
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72
0
votes
1 answer

How to specify standard input to Cevelop/EclipseC/C++ when running the program?

I currently have the input file hard coded in the C++ code: constexpr auto SELECTED_COLLEGES {"rva-ceeb-working.txt"}; std::ifstream ifs {SELECTED_COLLEGES, std::ios::in}; I intend to change the code to use standard input instead. When I…
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72