-
Notifications
You must be signed in to change notification settings - Fork 80
Draft: Add support for Lua-based TX filtering #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 28.x-knots
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Two demos that do the same thing? |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ bool Clang_IndVarSimplify_Bug_SanityCheck() { | |
} | ||
last = *it; | ||
} | ||
return false; | ||
return true; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This breaks the sanity check. If the test is failing for you, you should get a compiler that doesn't have the bug. It could very well impact other code! |
||
} | ||
|
||
util::Result<void> SanityChecks(const Context&) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// The MIT License (MIT) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Prefer to use the system-installed sol if possible (optional at compile time). Or at least a subtree. |
||
|
||
// Copyright (c) 2013-2020 Rapptz, ThePhD and contributors | ||
|
||
// 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 limitation the rights to | ||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
// the Software, and to permit persons to whom the Software is furnished to do so, | ||
// subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
// This file was generated with a script. | ||
// Generated 2022-06-25 08:14:19.336233 UTC | ||
// This header was generated with sol v3.3.0 (revision eba86625) | ||
// https://github.com/ThePhD/sol2 | ||
|
||
#ifndef SOL_SINGLE_CONFIG_HPP | ||
#define SOL_SINGLE_CONFIG_HPP | ||
|
||
// beginning of sol/config.hpp | ||
|
||
/* Base, empty configuration file! | ||
|
||
To override, place a file in your include paths of the form: | ||
|
||
. (your include path here) | ||
| sol (directory, or equivalent) | ||
| config.hpp (your config.hpp file) | ||
|
||
So that when sol2 includes the file | ||
|
||
#include <sol/config.hpp> | ||
|
||
it gives you the configuration values you desire. Configuration values can be | ||
seen in the safety.rst of the doc/src, or at | ||
https://sol2.readthedocs.io/en/latest/safety.html ! You can also pass them through | ||
the build system, or the command line options of your compiler. | ||
|
||
*/ | ||
|
||
// end of sol/config.hpp | ||
|
||
#endif // SOL_SINGLE_CONFIG_HPP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This certainly isn't portable.