Tagged Questions
The trivial tag has no wiki summary.
3
votes
3answers
1k views
destructors: triviality vs implicit definition
As I understand the standard, a trivial destructor is one which is implicitly declared and whose class has only base and non-static members with trivial destructors.
Given the recursivity of this ...
2
votes
3answers
155 views
Byte-for-byte copies of types in C++11?
The C++11 standard guarantees that byte-for-byte copies are always valid for POD types. But what about certain trivial types?
Here's an example:
struct trivial
{
int x;
int y;
trivial(int i) ...
1
vote
1answer
17 views
Is this functional dependancy a trivial? (Relational Database Design)
i have this problem
R = (A,B,C,D,E)
and F=(A->BC,B->CD,E->AD)
the book says that this in BCNF becuase all FDs are trivial
my question is how this FDs is trivial???
thank you
1
vote
1answer
177 views
Git merge - trivial merge?
If the base and the source have the same file content, and the destination branch/repo has some other file changes, which content does it keep, the source or the destination file?
To explain in ...