[cfe-users] Problem with installing clang-3.8.0

2020-06-09 Thread Kwiatek, Michal (Nokia - PL/Wroclaw) via cfe-users
Hi, I have troubles with installing clang 3.8.0 I am able to install versions such as 6.0 or 10 but I cannot install 3.8.0 When I write: `sudo apt-get install clang-3.8.0` I get following message (screen included) Os version: Ubuntu 20.04 ___ cfe-users

[cfe-users] Why my program is slower when fixed with performance-faster-string-find?

2020-06-09 Thread Pierre Tallotte via cfe-users
Hi all, I've made a micro-benchmark to check how much the use of a character literal as an argument of std::string::find outperforms the use of a single character string literal: #include #include #include int main() { int res = 0; std::string s(STRING_LITERAL); auto start = st