diff options
author | Andrej Rode <andrej.rode@ettus.com> | 2017-03-21 19:42:44 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:44 -0800 |
commit | 1b4af85e10121ba6c89aa2d2ea064dd554076dba (patch) | |
tree | 3c1dc2b5b9e61dd249c3658dafc7732f558bb6e8 /mpm/lib/spi/spi_lock.h | |
parent | d96ff2270cbaed482b4ef52230979d5de792783a (diff) | |
download | uhd-1b4af85e10121ba6c89aa2d2ea064dd554076dba.tar.gz uhd-1b4af85e10121ba6c89aa2d2ea064dd554076dba.tar.bz2 uhd-1b4af85e10121ba6c89aa2d2ea064dd554076dba.zip |
mpm: cleanup CMakeLists, fixup minor bugs
Diffstat (limited to 'mpm/lib/spi/spi_lock.h')
-rw-r--r-- | mpm/lib/spi/spi_lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpm/lib/spi/spi_lock.h b/mpm/lib/spi/spi_lock.h index 55ddb0baf..9ad4e20fe 100644 --- a/mpm/lib/spi/spi_lock.h +++ b/mpm/lib/spi/spi_lock.h @@ -1,8 +1,8 @@ #pragma once #include <boost/noncopyable.hpp> -#include <memory> #include <mutex> +#include <memory> class spi_lock : public boost::noncopyable { @@ -22,4 +22,4 @@ private: friend class std::lock_guard<spi_lock>; void lock(); void unlock(); -};
\ No newline at end of file +}; |