1 2 /* Compiler implementation of the D programming language 3 * Copyright (C) 2017-2022 by The D Language Foundation, All Rights Reserved 4 * written by Walter Bright 5 * https://www.digitalmars.com 6 * Distributed under the Boost Software License, Version 1.0. 7 * https://www.boost.org/LICENSE_1_0.txt 8 * https://github.com/dlang/dmd/blob/master/src/dmd/id.h 9 */ 10 11 #pragma once 12 13 struct Id 14 { 15 static void initialize(); 16 }; 17