I apologize if this error is the result of a typo, but I can't figure out how to make my variable negative when the correct syntax should be y=-x;
std::cout << "loop size = " << loop_size_ << std::endl;
core::Size neg_loop_size_ = -loop_size_;
std::cout << "neg loop size = " << neg_loop_size_ << std::endl;
When I run it, this is the result I get:
loop size = 4
neg loop size = 18446744073709551612
How do I get a new variable equal to -4?