This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copyright 2012 Brian Dickens <[email protected]> | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checking: [#{00}] | |
Checking: [#{01}] | |
Checking: [#{02}] | |
Checking: [#{03}] | |
Checking: [#{04}] | |
Checking: [#{05}] | |
Checking: [#{06}] | |
Checking: [#{07}] | |
Checking: [#{08}] | |
Checking: [#{09}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;-- Test the low range... | |
>> low: charset [#"^(00)" - #"^(80)"] | |
== make bitset! #{FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80} | |
>> find low #{40} | |
== true | |
>> find low #{A0} | |
== none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./r3-make -qs ../src/tools/make-commit.r | |
Performing Pre-Commit Tests | |
%../boot/boot-code.r - REBOL | |
2: Indentation of line not done with pure tabs. | |
3: Indentation of line not done with pure tabs. | |
4: Indentation of line not done with pure tabs. | |
5: Indentation of line not done with pure tabs. | |
6: Indentation of line not done with pure tabs. | |
7: Indentation of line not done with pure tabs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
../src/core/b-boot.c:2917:1: warning: initializer-string for array of chars is too long [-fpermissive] | |
../src/core/b-init.c: In function ‘void Load_Boot()’: | |
../src/core/b-init.c:159:33: warning: invalid conversion from ‘void*’ to ‘REBYTE* {aka unsigned char*}’ [-fpermissive] | |
../src/core/b-init.c: In function ‘void Register_Codec(const REBYTE*, codo)’: | |
../src/core/b-init.c:704:2: warning: invalid conversion from ‘void*’ to ‘ANYFUNC {aka void (*)(void*)}’ [-fpermissive] | |
../src/core/b-init.c: In function ‘void Set_Option_String(REBCHR*, REBCNT)’: | |
../src/core/b-init.c:728:36: warning: invalid conversion from ‘REBCHR* {aka unsigned char*}’ to ‘const char*’ [-fpermissive] | |
../src/core/b-init.c: In function ‘REBCNT Set_Option_Word(REBCHR*, REBCNT)’: | |
../src/core/b-init.c:740:7: warning: invalid conversion from ‘REBCHR* {aka unsigned char*}’ to ‘const char*’ [-fpermissive] | |
../src/core/b-init.c: In function ‘void Init_Main_Args(REBARGS*)’: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/questions/13552057/c-vector-access-violation-when-trying-to-write | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
class gen { | |
public: | |
int basa_biner; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <QApplication> | |
#include "mainwindow.h" | |
int main(int argc, char *argv[]) | |
{ | |
QApplication a(argc, argv); | |
MainWindow w; | |
w.show(); | |
return a.exec(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// const-wrapper-test.cpp | |
// | |
// For motivation and argumentation, reference: | |
// http://stackoverflow.com/questions/11167483/deriving-from-a-base-class-whose-instances-reside-in-a-fixed-format-database-m | |
// http://stackoverflow.com/questions/11219159/make-interchangeable-class-types-via-pointer-casting-only-without-having-to-all | |
#include <iostream> | |
#include <cassert> | |
#include "const-wrapper.h" |
NewerOlder