From 72ae824ec20abd570d40ffbd0c1f74144e2b91f7 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 8 Jan 2016 22:44:29 +0100 Subject: [PATCH] [DEV] correct LLVM C++ build and create v0.1.0 --- audio/drain/Volume.cpp | 2 +- lutin_audio-drain.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/drain/Volume.cpp b/audio/drain/Volume.cpp index 75ad559..02abb14 100644 --- a/audio/drain/Volume.cpp +++ b/audio/drain/Volume.cpp @@ -173,7 +173,7 @@ void audio::drain::Volume::volumeChange() { m_volumeDecalage = 0; return; } - #if (defined(__TARGET_OS__MacOs) || defined(__TARGET_OS__IOs) || defined(__TARGET_OS__Android) || __cplusplus < 201103L) + #if (defined(__STDCPP_LLVM__) || __cplusplus < 201103L) m_volumeAppli = pow(10.0f, volumedB/20.0f); #else m_volumeAppli = std::pow(10.0f, volumedB/20.0f); diff --git a/lutin_audio-drain.py b/lutin_audio-drain.py index e115d22..63f2b46 100644 --- a/lutin_audio-drain.py +++ b/lutin_audio-drain.py @@ -23,7 +23,7 @@ def get_maintainer(): return ["Mr DUPIN Edouard "] def get_version(): - return [0,0,0] + return [0,1,0] def create(target, module_name): my_module = module.Module(__file__, module_name, get_type())