Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

"...Dopo l’assalto e gli incendi alle sedi istituzionali e alle abitazioni degli esponenti politici dovrà seguire, quindi, una pars construens.

Uncategorized
2 2 2

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    0 Views
    se davvero se ne vanno, se vogliono, gli regalo pure un ministrohttps://roma.corriere.it/notizie/cronaca/26_marzo_02/famiglia-bosco-vuole-lasciare-italia-26f3e682-8fad-4329-af6f-552e415f3xlk.shtml
  • Proprietà transitiva

    Uncategorized
    1
    0 Votes
    1 Posts
    0 Views
    Proprietà transitiva?Chi decide la politica estera americana? E chi decide la politica estera dei paesi europei vassalli degli USA?@Nico_Piro@mastodon.uno https://nicopiro.substack.com/p/iran-giorno-4-ha-deciso-israele
  • 0 Votes
    5 Posts
    0 Views
    @adriananselmo Qui se scorri in fondo trovi tutte le istanze italiane: https://varese.social/aboutPotresti sperimentare e spostare il profilo su un software diverso rispetto a Mastodon.Ma se vuoi continuare a usare Mastodon allora https://sociale.network/about potrebbe andare
  • Hello #cpp / #cplusplus Fediverse,

    Uncategorized cpp cplusplus
    5
    0 Votes
    5 Posts
    2 Views
    @lesley yes, but in the case of @riley that's not the same issue: if foo has-a bar, there's no way to do the casting _implicitly_, as far as a I know. It would be possible with references by defining an implicit constructor of bar from foo, but this won't be applied to pointers.The only work around I can think of is to define an overloaded function bar * get_bar(bar * o) { return o; }bar * get_bar(foo * o) { return &o->bar_element; }and wrap pointer arguments with that function.