text stringlengths 54 60.6k |
|---|
<commit_before>#ifndef CLUE_MEMORY__
#define CLUE_MEMORY__
#include <clue/common.hpp>
namespace clue {
#if (defined(_WIN32) || defined(_WIN64)) && defined(_MSC_VER)
inline void* aligned_alloc(size_t nbytes, unsigned int alignment)
{
void* p = ::_aligned_malloc(nbytes, alignment));
if (!p)
{
thro... |
<commit_before>#line 2 "togo/kvs.hpp"
/**
@copyright MIT license; see @ref index or the accompanying LICENSE file.
@file kvs.hpp
@brief KVS interface.
@ingroup kvs
*/
#pragma once
#include <togo/config.hpp>
#include <togo/types.hpp>
#include <togo/utility.hpp>
#include <togo/kvs_types.hpp>
#include <togo/assert.hpp>... |
<commit_before>#pragma once
#include <cybozu/inttype.hpp>
namespace cybozu {
template<class T>
uint32_t hash32(const T *x, size_t n, uint32_t v = 0)
{
if (v == 0) v = 2166136261U;
for (size_t i = 0; i < n; i++) {
v ^= x[i];
v *= 16777619;
}
return v;
}
template<class T>
uint64_t hash64(const T *x, size_t n, u... |
<commit_before>#ifndef ENUM_CLASS_FLAGS_HPP
#define ENUM_CLASS_FLAGS_HPP
#include "allow_flags.hpp"
#include "iterator.hpp"
#include <bitset>
#include <initializer_list>
#include <numeric>
#include <utility>
namespace flags {
constexpr struct empty_t{} empty;
template <class E> struct flags {
public:
static_... |
<commit_before>#ifndef LIBICS3_ICS3_EEPROM_H_
#define LIBICS3_ICS3_EEPROM_H_
#include"ics3/eepparam.hpp"
#include<algorithm>
namespace ics {
class ICS3;
class EepRom {
public:
friend ICS3; // for ICS3::getRom()
EepParam get(EepParam) const;
void set(const EepParam&) noexcept;
template<typename... |
<commit_before>/*
* Copyright (C) 2009, Gostai S.A.S.
*
* This software is provided "as is" without warranty of any kind,
* either expressed or implied, including but not limited to the
* implied warranties of fitness for a particular purpose.
*
* See the LICENSE file for more information.
*/
// Network API ba... |
<commit_before>/* This file is part of the yazpp toolkit.
* Copyright (C) 1998-2013 Index Data and Mike Taylor
* See the file LICENSE for details.
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <yazpp/z-query.h>
using namespace yazpp_1;
void tst1(const char *query_str_in, const char ... |
<commit_before>#include "osl/state/numEffectState.h"
#include "osl/effect_util/effectUtil.h"
#include "osl/container/moveVector.h"
#include "osl/record/csa.h"
#include "osl/record/csaIOError.h"
#include "osl/move_generator/legalMoves.h"
#include <boost/random/mersenne_twister.hpp>
#include <string>
#include <sys/time.h... |
<commit_before>//
// peglint.cc
//
// Copyright (c) 2015 Yuji Hirose. All rights reserved.
// MIT License
//
#include <peglib.h>
#include <fstream>
using namespace std;
bool read_file(const char* path, vector<char>& buff)
{
ifstream ifs(path, ios::in | ios::binary);
if (ifs.fail()) {
return false;... |
<commit_before>/*** tws_util.cpp -- common utils
*
* Copyright (C) 2010, 2011 Ruediger Meier
*
* Author: Ruediger Meier <[email protected]>
*
* This file is part of atem.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
... |
<commit_before>#ifndef __RANK_FILTER__
#define __RANK_FILTER__
#include <deque>
#include <cassert>
#include <functional>
#include <iostream>
#include <iterator>
#include <boost/array.hpp>
#include <boost/container/set.hpp>
#include <boost/container/node_allocator.hpp>
#include <boost/math/special_functions/round.hpp... |
<commit_before>#pragma once
#include "simlib/concat.hh"
#include "simlib/concat_tostr.hh"
#include "simlib/inplace_array.hh"
#include "simlib/logger.hh"
#include <cstdlib>
#include <exception>
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
#ifdef DEBUG
#define D(...) __VA_ARGS__
#define ND(...)
#else
#define D(.... |
<commit_before>#pragma once
#ifndef _SDL_UTILS_H
#define _SDL_UTILS_H
#include <iostream>
#include <string>
#include <SDL.h>
namespace Snake {
class Utils {
public:
static void logSDLError(std::ostream &os, const std::string &msg) {
os << msg << " Error: " << SDL_GetError() << std::endl;
}
... |
<commit_before>/**
* Zillians MMO
* Copyright (C) 2007-2011 Zillians.com, Inc.
* For more information see http://www.zillians.com
*
* Zillians MMO is the library and runtime for massive multiplayer online game
* development in utility computing model, which runs as a service for every
* developer to build their ... |
<commit_before>/* Copyright 2016-2017 CyberTech Labs Ltd.
*
* 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 app... |
<commit_before>#include "PDBHelper.h"
#include "../Misc/Trace.hpp"
#include <cstdint>
#include <sstream>
#define CHECK_SUCCESS(e)\
{ \
HRESULT hresult = (e); \
if(FAILED(hresult)) \
{ \
BLACKBONE_TRACE( "PDB: %s: (%s) failed with HRESULT 0x%08x", __FUNCTION__, #e , hresult ); \
return hres... |
<commit_before>/*
* Copyright (c) 2015, Nils Asmussen
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in bin... |
<commit_before>/*************************************************************************************
* Copyright (C) 2012 by Alejandro Fiestas Olivares <[email protected]> *
* *
* This program is free software; you can r... |
<commit_before>/*************************************************************************************
* Copyright (C) 2012 by Alejandro Fiestas Olivares <[email protected]> *
* *
* This program is free software; you can r... |
<commit_before>#include "buddy.hh"
#if BUDDY_DEBUG
#include "kstream.hh"
#endif
#include <cassert>
#include <cstring>
#include <iterator>
using namespace std;
buddy_allocator::buddy_allocator(void *base, size_t len)
{
uintptr_t end = (uintptr_t)base + len;
// Use a linear allocator to allocate buddy bitmaps.
... |
<commit_before>/*
This Source Code Form is subject to the
terms of the Mozilla Public License, v.
2.0. If a copy of the MPL was not
distributed with this file, You can
obtain one at
http://mozilla.org/MPL/2.0/.
*/
#include "stdafx.h"
#include "material.h"
#include "renderer.h"
#include "Globals.h"
#include "utilitie... |
<commit_before>#include "Genes/Pawn_Advancement_Gene.h"
#include <string>
#include "Game/Board.h"
#include "Pieces/Piece.h"
#include "Genes/Piece_Strength_Gene.h"
#include "Utility.h"
Pawn_Advancement_Gene::Pawn_Advancement_Gene(const std::shared_ptr<const Piece_Strength_Gene>& piece_strength_source_in) :
Gene(0... |
<commit_before>//===-- GRConstants.cpp - Simple, Path-Sens. Constant Prop. ------*- C++ -*-==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------... |
<commit_before>/*
Copyright (c) 2008, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of condi... |
<commit_before>#include "BasicExample.h"
#include "btBulletDynamicsCommon.h"
#define ARRAY_SIZE_Y 5
#define ARRAY_SIZE_X 5
#define ARRAY_SIZE_Z 5
#include "LinearMath/btVector3.h"
#include "LinearMath/btAlignedObjectArray.h"
#include "CommonInterfaces/CommonRigidBodyBase.h"
#ifndef M_PI
#define M_PI 3.14159265... |
<commit_before>/*
* Copyright (C) 2017-present ScyllaDB
*
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* ... |
<commit_before>#include "LinearRegression.h"
#include <armadillo>
#include <assert.h>
#include <iostream>
using namespace arma;
LinearRegression::LinearRegression(mat &x, vec &y)
: x{x}, y{y}, trained{false} {
assert(x.n_rows == y.n_rows);
// Create bias column and append at the end of x
mat bias = ones<m... |
<commit_before>/***************************************************************************
* Copyright (c) Wolf Vollprecht, Johan Mabille and Sylvain Corlay *
* Copyright (c) QuantStack *
* ... |
<commit_before>/*
Kopete , The KDE Instant Messenger
Copyright (c) 2001-2002 by Duncan Mac-Vicar Prett <[email protected]>
Viva Chile Mierda!
Started at Wed Dec 26 03:12:10 CLST 2001, Santiago de Chile
Kopete (c) 2002-2005 by the Kopete developers <[email protected]>
*********************... |
<commit_before>void Config()
{
// 7-DEC-2000 09:00
// Switch on Transition Radiation simulation. 6/12/00 18:00
// iZDC=1 7/12/00 09:00
// ThetaRange is (0., 180.). It was (0.28,179.72) 7/12/00 09:00
new AliGeant3("C++ Interface to Geant3");
if (!gSystem->Getenv("CONFIG_FILE")) {
TFile *rootfile = n... |
<commit_before>#include <iostream>
#include <fstream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <sstream>
using namespace std;
void inputValue();
void print2DVector(vector<vector<int> >& v2D);
void printVector(vector<int>& v);
//ECE 528
//Tenzin Ngodup
//KL Partioning Softwa... |
<commit_before>#include "balancer.hpp"
#include <net/tcp/stream.hpp>
#define READQ_PER_CLIENT 4096
#define MAX_READQ_PER_NODE 8192
#define READQ_FOR_NODES 8192
#define MAX_OUTGOING_ATTEMPTS 100
// checking if nodes are dead or not
#define ACTIVE_INITIAL_PERIOD 8s
#define ACTIVE_CHECK_PERIOD ... |
<commit_before>/*
* Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retai... |
<commit_before>#ifdef HAVE_PYTHON
#include "../script.h"
#include "python.h"
#include <string>
#include "../globals.h"
#include "../util/funcs.h"
#include "../world.h"
#include <sstream>
#include <Python.h>
using namespace std;
static PyObject * paintown_levelLength(PyObject * dummy, PyObject * args){
PyObject ... |
<commit_before>#include "./obb.h"
#include <Eigen/Eigenvalues>
#include <iostream>
Obb::Obb(Eigen::MatrixXf points)
{
Eigen::Matrix3Xf centered = points.colwise() - points.rowwise().mean();
Eigen::MatrixXf cov = centered * centered.adjoint();
std::cout << "cov" << std::endl;
std::cout << cov << std::endl;
E... |
<commit_before>/*
* Copyright (c) 2015 Oleg Morozenkov
* Copyright (c) 2018 Egor Pugin
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitatio... |
<commit_before>//
// Copyright (c) 2017 The nanoFramework project contributors
// See LICENSE file in the project root for full license information.
//
#include "win_dev_wifi_native.h"
static const CLR_RT_MethodHandler method_lookup[] =
{
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,... |
<commit_before>#ifndef INCLUDE_UNITTESTS_OpenMeshAddFaceTriangleMesh_HH
#define INCLUDE_UNITTESTS_OpenMeshAddFaceTriangleMesh_HH
#include <gtest/gtest.h>
#include <Unittests/unittests_common.hh>
#include <iostream>
class OpenMeshAddFaceTriangleMesh : public OpenMeshBase {
protected:
// This function is ... |
<commit_before>// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------... |
<commit_before>// Copyright (c) 2015-2016 The Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "pos.h"
#include "chain.h"
#include "chainparams.h"
#include "coins.h"
#include "hash.h"
#include "hash.h"
#... |
<commit_before>/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkTypes.h"
#include "Test.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkColor.h"
#include "SkFontHost.h"
#include "SkGraphics.h"
#include... |
<commit_before>/*
* IceWM
*
* Copyright (C) 1997-2003 Marko Macek
*
* Window list
*/
#include "config.h"
#include "ykey.h"
#include "ypaint.h"
#include "wmwinlist.h"
#include "ymenuitem.h"
#include "yaction.h"
#include "prefs.h"
#include "wmaction.h"
#include "wmclient.h"
#include "wmframe.h"
#include "wmmgr.h"
... |
<commit_before>// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2017 PM-Tech
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "pow.h"
#include "arith_ui... |
<commit_before>/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nl_bond.h"
#include <cassert>
#include <glog/logging.h>
#include <linux/if_bridge.h>
#in... |
<commit_before>#include <ting/debug.hpp>
#include <algorithm>
#include <ting/Buffer.hpp>
#include "../src/cliser/ServerThread.hpp"
#include "../src/cliser/ClientThread.hpp"
namespace{
const ting::u32 DMaxCnt = 16384;
const ting::u16 DPort = 13666;
const char* DIpAddress = "127.0.0.1";
}
class Connection : publi... |
<commit_before>/*
* Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retai... |
<commit_before>/*
* Copyright 2007-2022 CM4all GmbH
* All rights reserved.
*
* author: Max Kellermann <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must... |
<commit_before>/*
* RandomNumber.cc
*
* Copyright (C) 2015 Linas Vepstas
*
* Author: Linas Vepstas <[email protected]> January 2009
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License v3 as
* published by the Free Software... |
<commit_before>/****************************************************************************
**
** Copyright (C) 2014 Jolla Ltd.
** Contact: Raine Makelainen <[email protected]>
**
****************************************************************************/
/* This Source Code Form is subject to the terms of... |
<commit_before>#include <apfMDS.h>
#include <apfMesh2.h>
#include <apfShape.h>
#include <fstream>
#include <gmi.h>
#define MAX_ELEM_NODES 10
namespace apf {
static void ansys2apf(int ansysType, int& apfType, apf::FieldShape*& shape)
{
switch (ansysType) {
case 702:
apfType = apf::Mesh::TET;
shape =... |
<commit_before>/*******************************************************************************
*
* MIT License
*
* Copyright (c) 2017 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software... |
<commit_before>/*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
... |
<commit_before>/*===================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center,
Division of Medical and Biological Informatics.
All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without
even the imp... |
<commit_before>/* This file is part of the KDE project
Copyright (C) 2007 Matthias Kretz <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This l... |
<commit_before>#define png_infopp_NULL (png_infopp)NULL
#define int_p_NULL (int*)NULL
#include <boost/gil/extension/io/png_io.hpp>
#include "cctag/utils/FileDebug.hpp"
#include "cctag/utils/VisualDebug.hpp"
#include "cctag/utils/Exceptions.hpp"
#include "cctag/Detection.hpp"
#include "CmdLine.hpp"
#ifdef WITH_CUDA
#i... |
<commit_before>// Copyright (c) 2018 The OTS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "stat.h"
#include "name.h"
namespace ots {
// -----------------------------------------------------------------------------
// Op... |
<commit_before>b0c8dc2e-2e4d-11e5-9284-b827eb9e62be<commit_msg>b0cddee0-2e4d-11e5-9284-b827eb9e62be<commit_after>b0cddee0-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>/*
* Copyright 2015 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option... |
<commit_before>#include "openslideobject.h"
Nan::Persistent<v8::Function> OpenSlideObject::constructor;
OpenSlideObject::OpenSlideObject(string fileName) {
_fileName = fileName;
}
OpenSlideObject::~OpenSlideObject() {
if (_osr != NULL) {
openslide_close(_osr);
}
}
void OpenSlideObject::Init(v8::Local<v8... |
<commit_before>//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===-------------------------... |
<commit_before>namespace mimosa
{
template <typename Value, StringRef (*GetKey)(Value value)>
inline
Trie<Value, GetKey>::Trie(uint32_t depth)
: value_(),
childs_(nullptr),
depth_(depth),
size_(0)
{
}
template <typename Value, StringRef (*GetKey)(Value value)>
inline
Trie<Value, G... |
<commit_before>d576f650-2e4d-11e5-9284-b827eb9e62be<commit_msg>d57be804-2e4d-11e5-9284-b827eb9e62be<commit_after>d57be804-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
*... |
<commit_before>/*
This file is part of cpp-ethereum.
cpp-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
cpp-ethereum is dis... |
<commit_before>/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2010 NorthScale, Inc.
*
* 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... |
<commit_before>5fefa4a4-2e4d-11e5-9284-b827eb9e62be<commit_msg>5ff4ad1e-2e4d-11e5-9284-b827eb9e62be<commit_after>5ff4ad1e-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2014 Robert Osfield
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* inc... |
<commit_before>#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <errno.h>
#include "server.h"
#include "stinger_net/stinger_server_state.h"
//#define LOG_AT_D
#include "stinger_core/stinger_er... |
<commit_before>#include "tree.h"
#include "mpi_util.h"
#include <cstdlib>
#include <cmath>
#include <limits>
#include <utility>
#include <glog/logging.h>
Tree::Tree(unsigned int max_depth, unsigned int n_bins, unsigned int n_splits):
max_depth_(max_depth), n_bins_(n_bins), n_splits_(n_splits),
current_node_id_(0)... |
<commit_before>/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* 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... |
<commit_before>92e9bc68-2e4e-11e5-9284-b827eb9e62be<commit_msg>92eeb5c4-2e4e-11e5-9284-b827eb9e62be<commit_after>92eeb5c4-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015
Vladimír Vondruš <[email protected]>
Copyright © 2015
Jonathan Hale <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a
copy of thi... |
<commit_before>/*-------------------------------------------------------------------------
*
* FILE
* robusttransaction.cxx
*
* DESCRIPTION
* implementation of the pqxx::robusttransaction class.
* pqxx::robusttransaction is a slower but safer transaction class
*
* Copyright (c) 2002-2005, Jeroen T. ... |
<commit_before>/*
* Copyright (c) 2013 - 2016, Roland Bock
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* ... |
<commit_before>9904d35e-2e4d-11e5-9284-b827eb9e62be<commit_msg>9909cc9c-2e4d-11e5-9284-b827eb9e62be<commit_after>9909cc9c-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>/*
MPL3115A2 Barometric Pressure Sensor Library
By: Nathan Seidle
SparkFun Electronics
Date: September 24th, 2013
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).
Get pressure, altitude and temperature from the MPL3115A2 sensor.
... |
<commit_before>c1f0d122-2e4e-11e5-9284-b827eb9e62be<commit_msg>c1f5c8d0-2e4e-11e5-9284-b827eb9e62be<commit_after>c1f5c8d0-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before><commit_msg>Planning: adjust log level for easier debug<commit_after><|endoftext|> |
<commit_before>#include "p0compile/parser.hpp"
#include "p0compile/expression_tree.hpp"
#include "p0compile/scanner.hpp"
#include "p0compile/compiler_error.hpp"
#include <boost/test/unit_test.hpp>
namespace
{
bool handle_unexpected_error(p0::compiler_error const &error)
{
(void)error;
BOOST_CHECK(nullptr == "No... |
<commit_before>/***********************************************************************************
** MIT License **
** **
** Copyright (c) 2018 Victor DENIS (victordenis01... |
<commit_before>c5287cf2-2e4c-11e5-9284-b827eb9e62be<commit_msg>c52d77de-2e4c-11e5-9284-b827eb9e62be<commit_after>c52d77de-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>5dc45f6c-2e4d-11e5-9284-b827eb9e62be<commit_msg>5dc96d04-2e4d-11e5-9284-b827eb9e62be<commit_after>5dc96d04-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>874b912a-2e4d-11e5-9284-b827eb9e62be<commit_msg>875087ca-2e4d-11e5-9284-b827eb9e62be<commit_after>875087ca-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>54c5d0ee-2e4d-11e5-9284-b827eb9e62be<commit_msg>54cae1ec-2e4d-11e5-9284-b827eb9e62be<commit_after>54cae1ec-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2944d95a-2e4e-11e5-9284-b827eb9e62be<commit_msg>2949e97c-2e4e-11e5-9284-b827eb9e62be<commit_after>2949e97c-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>c5ef8fb8-2e4c-11e5-9284-b827eb9e62be<commit_msg>c5f47d02-2e4c-11e5-9284-b827eb9e62be<commit_after>c5f47d02-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>5c18e952-2e4e-11e5-9284-b827eb9e62be<commit_msg>5c1df0c8-2e4e-11e5-9284-b827eb9e62be<commit_after>5c1df0c8-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>abc122a8-2e4e-11e5-9284-b827eb9e62be<commit_msg>abc623c0-2e4e-11e5-9284-b827eb9e62be<commit_after>abc623c0-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>b51566f8-2e4d-11e5-9284-b827eb9e62be<commit_msg>b51a5b22-2e4d-11e5-9284-b827eb9e62be<commit_after>b51a5b22-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>e45b24d0-2e4c-11e5-9284-b827eb9e62be<commit_msg>e46034ca-2e4c-11e5-9284-b827eb9e62be<commit_after>e46034ca-2e4c-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>016bc550-2e4f-11e5-9284-b827eb9e62be<commit_msg>0170cb54-2e4f-11e5-9284-b827eb9e62be<commit_after>0170cb54-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>17a26b5a-2e4d-11e5-9284-b827eb9e62be<commit_msg>17a774d8-2e4d-11e5-9284-b827eb9e62be<commit_after>17a774d8-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>6ebf7040-2e4d-11e5-9284-b827eb9e62be<commit_msg>6ed4f762-2e4d-11e5-9284-b827eb9e62be<commit_after>6ed4f762-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>043901fe-2e4e-11e5-9284-b827eb9e62be<commit_msg>043dfab0-2e4e-11e5-9284-b827eb9e62be<commit_after>043dfab0-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>12492a4e-2e4e-11e5-9284-b827eb9e62be<commit_msg>124e22ce-2e4e-11e5-9284-b827eb9e62be<commit_after>124e22ce-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>21b351bc-2e4e-11e5-9284-b827eb9e62be<commit_msg>21b87f84-2e4e-11e5-9284-b827eb9e62be<commit_after>21b87f84-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>45a5b99e-2e4d-11e5-9284-b827eb9e62be<commit_msg>45aab0b6-2e4d-11e5-9284-b827eb9e62be<commit_after>45aab0b6-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>3703d7ac-2e4f-11e5-9284-b827eb9e62be<commit_msg>3708d9e6-2e4f-11e5-9284-b827eb9e62be<commit_after>3708d9e6-2e4f-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>2e3b5fa6-2e4e-11e5-9284-b827eb9e62be<commit_msg>2e409c6e-2e4e-11e5-9284-b827eb9e62be<commit_after>2e409c6e-2e4e-11e5-9284-b827eb9e62be<|endoftext|> |
<commit_before>0f4af184-2e4d-11e5-9284-b827eb9e62be<commit_msg>0f4fe9fa-2e4d-11e5-9284-b827eb9e62be<commit_after>0f4fe9fa-2e4d-11e5-9284-b827eb9e62be<|endoftext|> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.