Changeset 789f279


Ignore:
Timestamp:
May 13, 2022, 6:04:32 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
Children:
d8454b9
Parents:
accc9df9
Message:

More standard lib visibility

Location:
libcfa/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/algorithms/range_iterator.cfa

    raccc9df9 r789f279  
    2020#include <fstream.hfa>
    2121
    22 void main(RangeIter & this) {
     22#include "bits/defs.hfa"
     23
     24void main(RangeIter & this) libcfa_public {
    2325        for() {
    2426                this._start = -1;
  • libcfa/src/memory.cfa

    raccc9df9 r789f279  
    1616#include "memory.hfa"
    1717#include "stdlib.hfa"
     18
     19#pragma GCC visibility push(default)
    1820
    1921// Internal data object.
  • libcfa/src/parseargs.cfa

    raccc9df9 r789f279  
    2424#include "common.hfa"
    2525#include "limits.hfa"
     26
     27#pragma GCC visibility push(default)
    2628
    2729extern int cfa_args_argc __attribute__((weak));
  • libcfa/src/parseconfig.cfa

    raccc9df9 r789f279  
    1313#include "parseconfig.hfa"
    1414
     15
     16#pragma GCC visibility push(default)
    1517
    1618// *********************************** exceptions ***********************************
     
    110112
    111113
    112 [ bool ] comments( & ifstream in, [] char name ) {
     114static [ bool ] comments( & ifstream in, [] char name ) {
    113115        while () {
    114116                in | name;
Note: See TracChangeset for help on using the changeset viewer.