gpt4 book ai didi

c++ - 命名空间 "std"没有成员 "clamp"

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:42:49 100 4
gpt4 key购买 nike

VS2015 不会编译我的代码,说命名空间“std”没有成员“clamp”,尽管 intellisense 可以很好地识别它并告诉我参数和返回值。是的,我已经包含了标题。

#include <Math/Matrix3D.h>
#include <glm.hpp>
#include <gtx/transform.hpp>
#include <Utils/Clock.h>

#include <algorithm>

void somefunc()
{
viewPos.y = std::clamp(viewPos.y, -0.95f, 0.95f);
}

最佳答案

您必须使用 /std:c++latest 开关来启用 C++17 对标准的添加。

https://blogs.msdn.microsoft.com/vcblog/2016/06/07/standards-version-switches-in-the-compiler/

关于c++ - 命名空间 "std"没有成员 "clamp",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41972588/

100 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com