mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-08-15 11:08:38 +00:00

* Add platform.exceptions * Remove ranges tag * Use Clang 12 * Use Apple-Clang 12 * Upgrade Clangs * Use Clang 14 * Do not use CONAN_LIBS * Generate .cmake file
13 lines
263 B
C++
13 lines
263 B
C++
#include <Platform.Converters.h>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace Platform::Converters;
|
|
|
|
int main() {
|
|
int source {48};
|
|
char to = Converter<int, char>::Convert(source);
|
|
std::cout<<"int value: "<<source<<"\nchar value: "<<to<<'\n';
|
|
return 0;
|
|
}
|