This tag should be used to identify questions regarding compatibility issues, for example between different versions of the same software product or, development kit or library.
Questions tagged [compatibility]
2979 questions
21
votes
1 answer
Is sizeof(size_t) == sizeof(void*) always true?
Does the C99/C++11 standard guarantee that sizeof(size_t) == sizeof(void*) is always true?
size_t f(void* p)
{
return (size_t)(p); // Is it safe?
}
void* f(size_t n)
{
return (void*)(n); // Is it safe?
}

xmllmx
- 39,765
- 26
- 162
- 323
20
votes
2 answers
Angular 2: Check whether user's browser is compatible
I'm writing an Angular 2 app but am conscious that some users may not be using a browser that can support Angular 2.
I have a check for whether Javascript is enabled, I am more interested in whether the user's browser doesn't support certain…

Harry
- 3,312
- 4
- 34
- 39
20
votes
4 answers
CreateTextRange is not working in Chrome
In this code, createRange is not working in Chrome. In IE it is working. Please help how to rectify in this. Is there any other property to work like create range. So that it will helpful for my project.