mamot.fr is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mamot.fr est un serveur Mastodon francophone, géré par La Quadrature du Net.

Server stats:

3.2K
active users

#cplusplus

46 posts15 participants0 posts today

I know I follow a lot of indie game makers here, but I have little idea of what engines any of of you use. Anybody here know about C++ compiling? @josemachete79 is working on building his own version of #Angband from a cloned repo, and is running into issues compiling.

Any help anyone can offer would be much appreciated- I've played a test build or two of the game and it's working great except for these final compiling issues. Hit him up!

(The image below is a screenshot of the starting character I randomly generated to use when testing one of the builds.)

Retro C++ quiz #28

Given the following in C++:

struct A{};
struct B: public A {};

void b(){
// A
B::A ba;

// B
A::A a1;

// C
struct A::A::A a3;
}

Without checking, which is declaration is invalid?

A. A
B. B
C: C
D: Show answers

#cplusplus
#Cpppolls