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

Mi hanno detto che da un po' di tempo sono un po' troppo polemico.🙂

Uncategorized
5 2 14

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    1 Views
    #EmmanuelMacron: "Per essere liberi, bisogna essere temuti". Otto Paesi europei hanno accettato di partecipare al suo piano. Si tratta di Germania, Gran Bretagna, Polonia, Paesi Bassi, Belgio, Grecia, Svezia e Danimarca. L'Italia come sempre. La #Francia vuole rafforzare ed estendere la deterrenza nucleare - Internazionale https://www.internazionale.it/opinione/pierre-haski/2026/03/03/francia-deterrenza-nucleare @attualita
  • 0 Votes
    3 Posts
    0 Views
    @jeypawlik @OhJoySexToy Oh you're here! I love what you do!
  • 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
  • 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.