From: Uwe Hermann Date: Wed, 15 Mar 2017 22:16:05 +0000 (+0100) Subject: Don't use std:: in the code directly (where possible). X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=6f925ba9d6faf1077b73c5a5808259576081716a;hp=6f925ba9d6faf1077b73c5a5808259576081716a;p=pulseview.git Don't use std:: in the code directly (where possible). Use "using std::foo" to make the actual code itself a lot more readable. There are some exceptions where we usually cannot do this, e.g. std::thread often conflicts with "thread" from Qt or Boost. ---