]> git.ipfire.org Git - thirdparty/gcc.git/blame - contrib/filter_gcc_for_doxygen
PR c++/87554 - ICE with extern template and reference member.
[thirdparty/gcc.git] / contrib / filter_gcc_for_doxygen
CommitLineData
4ee9c684 1#!/bin/sh
2
3# This filters GCC source before Doxygen can get confused by it;
6a1eb8cb 4# this script is listed in the doxyfile. The output is not very
4ee9c684 5# pretty, but at least we get output that Doxygen can understand.
6#
6a1eb8cb 7# $1 is a source file of some kind. The source we wish doxygen to
4ee9c684 8# process is put on stdout.
9
10dir=`dirname $0`
6a1eb8cb 11python $dir/filter_params.py $1
4ee9c684 12exit 0