Files @ r28126:9f842b8811bc
Branch filter:

Location: cpp/openttd-patchpack/source/src/pathfinder/yapf/CMakeLists.txt

Jonathan G Rennison
Codechange: Replace AllocatedStringParameters with ArrayStringParameters (#11452)

All uses of AllocatedStringParameters are with a compile-time fixed
constant.
Use of a dynamically allocated buffer on the heap is unnecessary and
increases overhead, particularly due to frequent use as a temporary.
add_files(
    nodelist.hpp
    yapf.h
    yapf.hpp
    yapf_base.hpp
    yapf_cache.h
    yapf_common.hpp
    yapf_costbase.hpp
    yapf_costcache.hpp
    yapf_costrail.hpp
    yapf_destrail.hpp
    yapf_node.hpp
    yapf_node_rail.hpp
    yapf_node_road.hpp
    yapf_node_ship.hpp
    yapf_rail.cpp
    yapf_road.cpp
    yapf_ship.cpp
    yapf_type.hpp
)