The standards-compliance tag has no wiki summary.
4
votes
5answers
100 views
Two- and one-dimensional arrays equivalence in C++
It is known that two- and one-dimensional arrays can be used equivalently, by simple coordinate conversion. Is such equivalence guaranteed by the C++ standard, or maybe it's the most convenient way of ...
0
votes
1answer
86 views
Pointer address standards-compliant conversion
I need to find the most standards-compliant way to obtain the address of a pointer and store its bytes separately (for instance, to transmit them serially).
I have two versions below, the first one ...
3
votes
2answers
54 views
Naming classes and resources with the company brand name
I'm currently working on a project that has a number of legacy code elements. In the past they have have been using the brand name in class definitions and resource names. For example (without me ...
5
votes
1answer
199 views
g++ vs intel/clang argument passing order?
Consider the following code (LWS):
#include <iostream>
#include <chrono>
inline void test(
const std::chrono::high_resolution_clock::time_point& first,
const ...
1
vote
1answer
194 views
__func__ C++11 function's local predefined variable, won't compile
The __func__ C++11 local predefined variable of a function does not compile in Visual Studio 2012 Professional (with Update 1 installed) with the default built-in Visual Studio 2012 (v110) compiler or ...
-3
votes
1answer
84 views
How can I insert column comments through a Standard SQL script?
I want a script that inserts table comments and column comments. Said script must be unique and run satisfactorily both on Oracle and MySQL. Furthermore, I prefer it to be written in Standard SQL.
...
6
votes
4answers
132 views
Is a compiler allowed to remove assignments to struct member if it is not obviously used?
Consider the following code:
char buffer[256];
struct stX
{
int a;
int b;
int c;
};
void * my_memcpy ( void * destination, const void * source, size_t num );
int main()
{
struct ...
11
votes
1answer
911 views
Does constexpr imply inline?
Consider the following inlined function :
// Inline specifier version
#include<iostream>
#include<cstdlib>
inline int f(const int x);
inline int f(const int x)
{
return 2*x;
}
int ...
0
votes
0answers
71 views
Microsoft Visual C++ .Net 2003 and C++ standard compliance
I am use Microsoft Visual C++ .Net 2003 ver. 7.1.3088. My compiler is Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86. How I can know what C++ standard is supported by this ...
-1
votes
1answer
109 views
Rounding error of std::cbrt?
I wonder if the following should be reported as a bug in gcc implementation of standard library.
For all unsigned integers i, if we compare int(std::sqrt(i)) to the actual square root of the integer, ...
5
votes
1answer
101 views
variadic list vs single template parameter: what does the standard say?
Consider the following code:
#include <iostream>
#include <type_traits>
// Variadic version
template<class... Variadic>
void f(const Variadic&... variadic)
{
...
5
votes
3answers
161 views
Does casting away constness from “this” and then changing a member value invoke undefined behaviour?
In a response to my comment to some answer in another question somebody suggests that something like
void C::f() const
{
const_cast<C *>( this )->m_x = 1;
}
invokes undefined behaviour ...
7
votes
4answers
246 views
Boolean multiplication in c++?
Consider the following:
inline unsigned int f1(const unsigned int i, const bool b) {return b ? i : 0;}
inline unsigned int f2(const unsigned int i, const bool b) {return b*i;}
The syntax of f2 is ...
0
votes
2answers
171 views
HTTP server not to support persistent connections
is it possible for an HTTP/1.1 server not to support persistent connections and still be HTTP-compliant?
1
vote
1answer
64 views
Default vs Deduced template parameter?
In the following :
template<typename Type>
struct MyClass
{
template<typename OtherType> MyClass(const MyClass<OtherType>& x);
template<typename OtherType = Type> ...
0
votes
1answer
69 views
How stringent should I be with Code Analysis compliance in Visual Studio?
After playing with Code Analysis for a small project I am working on, I am wondering just how severe I should be when resolving code to be analytically compliant.
I know I can suppress warnings for ...
9
votes
3answers
577 views
On the std::abs function
Is the std::abs() function well defined for ALL arithmetic types in C++11 and will return |x| with no problem of approximation?
A weird thing is that with g++4.7, std::abs(char), std::abs(short int), ...
2
votes
1answer
119 views
Construction and initialization list : what the compiler do?
I have some questions about constructors in C++. For each question (from (1) to (4)) I would like to know if the behaviour is perfectly defined regarding to the standard.
A) The first one is about ...
2
votes
3answers
136 views
Where can I find documentation for ANSI-compliant SQL?
A few months back, I created a view in Teradata. Now, other clients are reporting issues when they are querying the view in ANSI mode. Perhaps I need to go to Google school because I have had no luck ...
2
votes
1answer
83 views
Is &array[size] perfectly secure? [duplicate]
Possible Duplicate:
Take the address of a one-past-the-end array element via subscript: legal by the C++ Standard or not?
In the C++ standard library, many algorithms takes the begin() and ...
4
votes
1answer
109 views
Method Overriding and Strict Standards
So I have this parent class:
class GenericHTMLElement
{
public function addElement(GenericHTMLElement $element) {}
}
that is extended by these two classes
class ListViewItem extends ...
14
votes
1answer
322 views
Do I have the guarantee that sizeof(type) == sizeof(unsigned type)?
The sizeof char, int, long double... can vary from one compiler to another. But do I have the guarantee according to the C++11 or C11 standard that the size of any signed and unsigned fundamental ...
35
votes
5answers
2k views
Why class { int i; }; is not fully standard-conformant?
This is a follow-up question.
In the previous question, @JohannesSchaub-litb said that the following code is not fully standard-conformant:
class { int i; }; //unnamed-class definition. ยง 9/1 ...
1
vote
1answer
724 views
ASP.net This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms
Hey all i am getting this error when trying to compare a password in my database using my ASP.net page.
This implementation is not part of the Windows Platform FIPS validated cryptographic ...
5
votes
2answers
174 views
std::ifstream::read or std::ofstream::write with a zero parameter?
Is it perfectly ok (= well defined behaviour according to the standard) to call :
mystream.read(buffer, 0);
or
mystream.write(buffer, 0);
(and of course nothing will be read or written).
I ...
3
votes
1answer
169 views
Gradient in CSS
I added a gradient background for my .html page. Seems to work in most browsers but I would like to know if it is standard and complies to all rules.
.css
html {
/* fallback */
...
0
votes
6answers
90 views
Self logical and?
The answer may be obvious for some of you, but as I can't find the answer, I need to ask it.
Oftenly, if a function has to return whether all was executed without problems, I use a boolean that track ...
0
votes
2answers
554 views
std::streampos, std::streamoff and std::streamsize to long long int?
To measure position/offsets/size of streams, the standard specify std::streampos, std::streamoff and std::streamsize, but they are implementation defined.
How to convert these types to long long int ...
3
votes
1answer
103 views
C++ stream bitmask as bool?
In the C++ standard, std::ios::openmode, std::ios::fmtflags and std::ios::iostate are implementation defined. But std::ios::goodbit is standardized to be equal to zero. My question is : can these ...
3
votes
3answers
79 views
Inconsistent behaviour accessing private nested class definition
I have code that declares a subclass template as private and then a member as protected:
class X {
private:
template <class T>
class Y {
public:
void somethingToDo();
...
0
votes
2answers
76 views
Non-const used in a constexpr : what does the standard say?
What does the C++11 iso standard say about such an expression :
class MyClass
{
public:
constexpr int test()
{
return _x;
}
protected:
int _x;
};
...
0
votes
1answer
207 views
Are numeric_limits min/max constexpr?
Does the C++11 standard specify that the numeric_limits<T>::min and max have to be constant-expression that can be used in templates or static_assert?
More generally, how to find the list of ...
2
votes
1answer
345 views
Force Standards/Quirks Mode in Chrome, Firefox, and Safari?
Is there a way to force Standards/Quirks mode from the browser (similar to what IE does) in Chrome, Firefox, and Safari?
7
votes
3answers
753 views
Are Keyboard shortcuts mandatory for 508 compliance
I researched a lot on this and seem to be getting conflicting answers on SO and all of the web. I understand that with Section 508 that compliance DOES NOT equal accessibility.
Biggest thing is ...
-1
votes
1answer
89 views
For what object pointer values does the pointer to member operator invoke undefined behavior?
When using the pointer to member operator (->*), what pointer values for the object will invoke undefined behavior?
Specifically, if the member function in question does not access any members and is ...
0
votes
2answers
96 views
Is casting a const char array to an integer in the header always safe?
Ignoring how repulsive and hacky it is, is the following guaranteed to be safe? If not, why?
//.h
struct foo
{
const static intptr_t KEY = (intptr_t) "VALUE";
};
//.cpp
void useFoo()
{
const char ...
0
votes
3answers
84 views
Standard/Compliance for web programming? [closed]
I am working with developers right now that write code the way they want and when i tell them to do it other way they respond that its just matter of preference how to do it and they have their way ...
5
votes
3answers
120 views
Can types in `cname` and `name.h` be different types?
Is this code standard conforming?
#include <stdio.h>
#include <cstdio>
int main() {
FILE *f1 = 0;
std::FILE *f2 = f1;
}
Explanation: The standard says [headers]:
[...] the ...
5
votes
3answers
379 views
Kernel's “container_of” - any way to make it ISO conforming?
While looking at Linux kernel's implementation of doubly linked circular lists, I've found following macro:
#define container_of(ptr, type, member) ({ \
const typeof( ((type *)0)->member ...
13
votes
2answers
287 views
May pointer to members circumvent the access level of a member?
Our infamous litb has an interesting article on how to circumvent the access check.
It is fully demonstrated by this simple code:
#include <iostream>
template<typename Tag, typename ...
0
votes
1answer
252 views
.NET doesn't support non-standard XMLDSIG signature element names
I'm trying to implement an industry spec that requires enveloped XML digital signatures (XMLDSIG). Instead of conforming to the examples (<Signature>) my spec uses its own name for the ...
1
vote
1answer
242 views
MSVC std::exception doesn't comply with standard?
I implemented an exception class WINERR_EXCEPTION for throwing runtime description of GetLastError() !
And it worked as expected.
Then I wanted to eliminate the unnecessary allocations.
For that I ...
0
votes
1answer
117 views
Is it possible that browser's rendering mode dynamically change from standard to quirks
Suppose that you have a page that renders in browser's standard rendering mode. Suppose that there is a button on the page that, when clicked, downloads a set of external CSS and JavaScript files and ...
6
votes
3answers
247 views
Must a C++ Standard Library be implemented in C++?
Must a conforming C++ Standard Library Implementation be implemented in C++?
If not, is it allowed to do magic things that are not doable in pure C++ & Standard Library & some implementation ...
1
vote
1answer
254 views
Missing templates from `<cmath>` header in VS 2010
I just noticed that the templates dictated by the c++11 Standard [26.8 c.math] for the <cmath> header are missing from the version of the c++ standard library shipped with visual studio 2010.
...
10
votes
3answers
136 views
Defined behaviour for expressions
The C99 Standard says in $6.5.2.
Between the previous and next sequence point an object shall have its stored value
modified at most once by the evaluation of an expression. Furthermore, the ...
1
vote
4answers
1k views
How do I use a binary prefix in accordance with C11?
I am currently starting out with programming micro controllers using C30 (A C compiler based on GCC from microchip for their PIC24 devices) and I enabled Strict ANSI warnings out of curiosity. First ...
4
votes
4answers
123 views
How to make g++ refuse any code that exhibits undefined behaviour?
I would like to add a CXXFLAG to my build systems that force the entire code-base to be well-defined. So every piece of code that exhibits undefined behaviour in a static fashion, should be refused by ...
5
votes
4answers
469 views
Non-ASCII characters in C
I was looking at google go's runtime source code (at https://go.googlecode.com/hg/src/pkg/runtime/ ), and it seems they use a special character for their function names, ยท . (Look for example at ...
2
votes
2answers
150 views
Aliasing in Fortran function
For optimisation reasons, Fortran enforces that the dummy arguments of a subroutine or function are not alias, i.e., they do not point the the same memory place.
I am wondering if the same constraint ...

