136ac495dSmrg// Profiling set/multiset implementation -*- C++ -*- 236ac495dSmrg 3*c0a68be4Smrg// Copyright (C) 2009-2019 Free Software Foundation, Inc. 436ac495dSmrg// 536ac495dSmrg// This file is part of the GNU ISO C++ Library. This library is free 636ac495dSmrg// software; you can redistribute it and/or modify it under the 736ac495dSmrg// terms of the GNU General Public License as published by the 836ac495dSmrg// Free Software Foundation; either version 3, or (at your option) 936ac495dSmrg// any later version. 1036ac495dSmrg// 1136ac495dSmrg// This library is distributed in the hope that it will be useful, 1236ac495dSmrg// but WITHOUT ANY WARRANTY; without even the implied warranty of 1336ac495dSmrg// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1436ac495dSmrg// GNU General Public License for more details. 1536ac495dSmrg 1636ac495dSmrg// Under Section 7 of GPL version 3, you are granted additional 1736ac495dSmrg// permissions described in the GCC Runtime Library Exception, version 1836ac495dSmrg// 3.1, as published by the Free Software Foundation. 1936ac495dSmrg 2036ac495dSmrg// You should have received a copy of the GNU General Public License along 2136ac495dSmrg// with this library; see the file COPYING3. If not see 2236ac495dSmrg// <http://www.gnu.org/licenses/>. 2336ac495dSmrg 2436ac495dSmrg/** @file profile/set 2536ac495dSmrg * This file is a GNU profile extension to the Standard C++ Library. 2636ac495dSmrg */ 2736ac495dSmrg 2836ac495dSmrg#ifndef _GLIBCXX_PROFILE_SET 2936ac495dSmrg#define _GLIBCXX_PROFILE_SET 1 3036ac495dSmrg 3136ac495dSmrg#include <set> 3236ac495dSmrg#include <profile/set.h> 3336ac495dSmrg#include <profile/multiset.h> 3436ac495dSmrg 3536ac495dSmrg#endif 36