blob: a784f84476e89fe77d17b24f0f65dc9754e64fde [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_CXX17_BACKPORTS_H_
#define BASE_CXX17_BACKPORTS_H_
#include <algorithm>
namespace gurl_base {
// TODO(crbug.com/1373621): Rewrite all uses of gurl_base::clamp as std::clamp and
// remove this file.
using std::clamp;
} // namespace base
#endif // BASE_CXX17_BACKPORTS_H_