// -*- C++ -*- // Boost general library 'format' --------------------------- // See http://www.boost.org for updates, documentation, and revision history. // (C) Samuel Krempp 2001 // krempp@crans.ens-cachan.fr // Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // ideas taken from Rüdiger Loos's format class // and Karl Nelson's ofstream (also took its parsing code as basis for printf parsing) // ------------------------------------------------------------------------------ // macros_default.hpp : configuration for the format library // provides default values for the stl workaround macros // ------------------------------------------------------------------------------ #ifndef BOOST_FORMAT_MACROS_DEFAULT_HPP #define BOOST_FORMAT_MACROS_DEFAULT_HPP // *** This should go to "boost/config/suffix.hpp". #ifndef BOOST_IO_STD # define BOOST_IO_STD std:: #endif // **** Workaround for io streams, stlport and msvc. #ifdef BOOST_IO_NEEDS_USING_DECLARATION namespace boost { using std::char_traits; using std::basic_ostream; using std::basic_ostringstream; namespace io { using std::basic_ostream; namespace detail { using std::basic_ios; using std::basic_ostream; using std::basic_ostringstream; } } } #endif // ------------------------------------------------------------------------------ #endif // BOOST_FORMAT_MACROS_DEFAULT_HPP a5ea'/>
path: root/etc/completion
AgeCommit message (Expand)Author
2021-04-25import: Remove Nix importer....Ludovic Courtès
2021-02-17scripts: system: Remove 'vm-image' command....Mathieu Othacehe
2020-12-04bash completion: Complete file names after '-f' and '-l'....Ludovic Courtès
2020-09-24bash completion: Adjust to new 'guix help' output....Ludovic Courtès
2020-09-21bash completion: Complete file names after 'guix package -p'....Fulbert
2020-09-10bash completion: Restore completion for 'guix system', etc....Ludovic Courtès
2020-06-27bash completion: Complete 'guix environment' properly....Ludovic Courtès
2020-06-04bash completion: Complete sub-commands after 'guix time-machine'....Ludovic Courtès
2020-06-04bash completion: Complete file names after '-p' and '-C'....Ludovic Courtès
2020-05-13mailmap: Update entries for Nikita....nikita
2020-02-14guix build: Add '--manifest' option....Marius Bakke
2019-11-26guix build, daemon: Rename "--no-build-hook" to "--no-offload"....Ludovic Courtès
2019-04-29guix package: Add 'install', 'remove', and 'upgrade' aliases....Ludovic Courtès
2019-03-18Correct name and email address for ng0....ng0