Daniel Duffy
C++ author, trainer
- Joined
 - 10/4/07
 
- Messages
 - 10,820
 
- Points
 - 648
 
I don't know why students think Quantlib is needed for this course..
	
		
			
		
		
	
				
			bump
class C
{
public:
     class C() { std::cout << "eek"; }
};
	BUMP
bumpBUMP
HOW to get BOOST WORKING.
template<class InputIt, class UnaryFunction>
UnaryFunction for_each(InputIt first, InputIt last, UnaryFunction f)
{
    for (; first != last; ++first) {
        f(*first);
    }
    return f;
}
	bumpDirectory setting Boost 1.59 for VS2015 Community
Downloads | IDE, Code, & Team Foundation Server | Visual StudioQuestion: can someone give me the link to the current version of Visual Studio 2015/2017 Community that is being used in the QN C++ course?
Thanks
Daniel