[DEV] correct LLVM C++ build and create v0.1.0
This commit is contained in:
parent
902c0ec7aa
commit
72ae824ec2
@ -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);
|
||||
|
@ -23,7 +23,7 @@ def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
|
||||
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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user