underscored text
underscored and bolded text some text after
calibration_revision (some text)
- List 1 a lot of text that end with under_scope
- List 2
template <class T> | |
class Expected { | |
union { | |
T ham; | |
std::exception_ptr spam; | |
}; | |
bool gotHam; | |
Expected() {} // used internally | |
public: | |
Expected(const T& rhs) : ham(rhs), gotHam(true) {} |
template <class Fun> | |
class ScopeGuard { | |
Fun f_; | |
bool active_; | |
public: | |
ScopeGuard(Fun f) | |
: f_(std::move(f)) | |
, active_(true) { | |
} | |
~ScopeGuard() { if (active_) f_(); } |
diff --git a/Project/ICSharpCode.TextEditor.csproj b/Project/ICSharpCode.TextEditor.csproj | |
index 13c9f35..8f055ef 100644 | |
--- a/Project/ICSharpCode.TextEditor.csproj | |
+++ b/Project/ICSharpCode.TextEditor.csproj | |
@@ -244,4 +244,4 @@ | |
<PreBuildEvent> | |
</PreBuildEvent> | |
</PropertyGroup> | |
-</Project> | |
\ No newline at end of file |
// ==UserScript== | |
// @name Steam Price Comparison - Unpowered edition | |
// @version 2.3.3 | |
// @namespace http://steamunpowered.eu/comparison-script/ | |
// @description Displays prices from all regions in the Steam store and convert them to your local currency | |
// @copyright 2011+, KindDragon; 2010+, Zuko; Original author: Tor (http://code.google.com/p/steam-prices/) | |
// @homepage http://userscripts.org/scripts/show/149928 | |
// @download http://userscripts.org/scripts/source/149928.user.js | |
// @update http://userscripts.org/scripts/source/149928.meta.js | |
// @license MIT License; http://www.opensource.org/licenses/mit-license.php |
void Test( float* kernel, float* src, float* dst, int n ) | |
{ | |
in al,dx | |
and esp,0FFFFFFF0h | |
sub esp,2Ch | |
__m128 zero = _mm_setzero_ps(); | |
__m128 x0 = zero; | |
__m128 x1 = zero; | |
__m128 x2 = zero; | |
__m128 x3 = zero; |
using Microsoft.VisualBasic; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Diagnostics; | |
using System.Windows.Forms; | |
using System.Runtime.InteropServices; |
underscored text
underscored and bolded text some text after
calibration_revision (some text)