-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ベル、デシベルといった単位用のクラス作成 #51
Comments
namespace dxle {
namespace literals {
namespace sound_units_literals {
//略
}
using namespace sound_units_literals;
}
using namespace literals;
namespace sound_units {
using namespace literals::sound_units_literals;
}
} となっているんですが、 using namespace literals;
namespace sound_units {
using namespace literals::sound_units_literals;
} これは良くない気がします・・・標準でもそうはなっていないですし 追記 そんなことはなかった。
規格書にはこれしか書いてないけど
この一文はどこから出てきたんだろう |
#42 で必要そう。
std::chrono::durationを参考に作る
DxLibで
10^-4
のオーダーが求められることがあるので(パンとか)SI単位では認められないが、myrio
を導入するThe text was updated successfully, but these errors were encountered: