Revision a5dbf0f360b25873731b98da7632406a45979894 authored by Dmitry Yu. Naumov on 12 May 2021, 13:13:17 UTC, committed by Dmitry Yu. Naumov on 12 May 2021, 13:13:17 UTC
ctest improvements

See merge request ogs/ogs!3619
2 parent s e3b4c6c + 2325db8
Raw File
Stream.h
/**
 * \author Norihiro Watanabe
 * \date   2014-03-07
 * \brief  Helper tools for debugging
 *
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <algorithm>
#include <iterator>
#include <ostream>
#include <vector>

template<typename T>
std::ostream &operator <<(std::ostream &os, const std::vector<T> &v) {
    std::copy(v.begin(), v.end(), std::ostream_iterator<T>(os, " "));
    os << "\n";
    return os;
}
back to top