From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail From: G. B. Newsgroups: comp.lang.ada Subject: Re: Trivia: Ada packages are great! Date: Wed, 7 Nov 2018 18:27:28 -0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: <5af3c4a0-5856-47ec-bb05-0ae9f9bb24ff@googlegroups.com> <98c7d0b5-2262-4246-bb4f-6dde1d59ff6b@googlegroups.com> <14fe0dc9-da23-4eac-a407-01198bfc7ae2@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Wed, 7 Nov 2018 18:27:28 -0000 (UTC) Injection-Info: reader02.eternal-september.org; posting-host="675ac71d348fb690df260d291041b802"; logging-data="10999"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18/GBCD55WQ4FGkPNm2WBZYhlCJ86rdw3Y=" User-Agent: NewsTap/5.3.1 (iPhone/iPod Touch) Cancel-Lock: sha1:VnTNR8bzhhA3CjjD3oOS4vL/T5A= sha1:EWO36UcieLdSGRw7Q8wywV7vRgg= Xref: reader02.eternal-september.org comp.lang.ada:54790 Date: 2018-11-07T18:27:28+00:00 List-Id: Maciej Sobczak wrote: > Separate subprograms in Ada are not helping when integrating code from a > different codebase, because they do not reduce the number of files that > need to be modified (and therefore versioned) when code is moved between > projects. Contrary to this, C and C++ allow such moves with minimal > number of file modifications - in particular, no existing file needs to > be modified in order to add a new function to the existing namespace. Adding to a namespace in a separate file I need to modify a meta-MANIFEST file that lists what’s in a namespace. I then only need to consult the manifest if I need to ensure the presence of a namespace’s content in full...