Implement builders to build Boost from source code
This commit is contained in:
13
tests/sources/main.cpp
Normal file
13
tests/sources/main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
using namespace boost::algorithm;
|
||||
|
||||
int main()
|
||||
{
|
||||
std::string s = "Boost C++ Libraries";
|
||||
std::cout << to_upper_copy(s) << '\n';
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user