Coverage Report

Created: 2026-06-15 06:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aspell/lib/new_config.cpp
Line
Count
Source
1
// This file is part of The New Aspell
2
// Copyright (C) 2002 by Kevin Atkinson under the GNU LGPL
3
// license version 2.0 or 2.1.  You should have received a copy of the
4
// LGPL license along with this library if you did not you can find it
5
// at http://www.gnu.org/.
6
7
#include <string.h>
8
9
#include "config.hpp"
10
#include "errors.hpp"
11
#include "filter.hpp"
12
13
namespace acommon {
14
  
15
  extern void setup_static_filters(Config * config);
16
17
  Config * new_config() 
18
1.98k
  {
19
1.98k
    Config * config = new_basic_config();
20
1.98k
    setup_static_filters(config);
21
1.98k
    return config;
22
1.98k
  }
23
24
}