New one because old one hit bump limit.
What are you working on, Jow Forums?
What's your favorite memory of programming?
New one because old one hit bump limit.
What are you working on, Jow Forums?
What's your favorite memory of programming?
Other urls found in this thread:
boost.org
personal.cis.strath.ac.uk
medium.com
tutorialspoint.com
twitter.com
Previous Thread:
Salesforce development is bullshit.
Dumb boost::test question:
I'm trying to create several unit tests for my "Pixel" structure (a wrapper around a vector of four ints) by using the test boost library (boost.org
However, whenever I compile the following code:
#include
//Include the file we're going to test (duh)
#include "../imageProcessor/Pixel.cpp"
#include "../imageProcessor/printContainers.cpp"
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE Pixels
#include
BOOST_AUTO_TEST_SUITE( inversion_test )
BOOST_AUTO_TEST_CASE( inversion_test1 )
{
Pixel testInv = std::vector {15, 30, 45, 60};
testInv.invert();
std::vector rhs ={255-15, 255-30, 255-45, 255-60};
std::cout
>#include "../imageProcessor/Pixel.cpp"
>#include "../imageProcessor/printContainers.cpp"
Why have you done this
All ERP "development" is bullshit, my friend.
quality
>dopey_man_holding_a_diploma.png
do people actually care about gotos that much
200 pages into Lutz's Learning Python. The first real programming I've done. Hating my job and a having a couple projects in mind is solid motivation for working my way towards something hopefully more technical.