Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 38ad6b6

Browse files
committed
Fix build crashes
Fixed ``dispatchers.hpp`` and some minor things.
1 parent 7835d00 commit 38ad6b6

6 files changed

Lines changed: 554 additions & 164 deletions

File tree

.gitignore

Lines changed: 394 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,397 @@
3030
*.exe
3131
*.out
3232
*.app
33+
34+
# User-specific files
35+
*.rsuser
36+
*.suo
37+
*.user
38+
*.userosscache
39+
*.sln.docstates
40+
41+
# User-specific files (MonoDevelop/Xamarin Studio)
42+
*.userprefs
43+
44+
# Mono auto generated files
45+
mono_crash.*
46+
47+
# Build results
48+
[Dd]ebug/
49+
[Dd]ebugPublic/
50+
[Rr]elease/
51+
[Rr]eleases/
52+
x64/
53+
x86/
54+
[Ww][Ii][Nn]32/
55+
[Aa][Rr][Mm]/
56+
[Aa][Rr][Mm]64/
57+
bld/
58+
[Bb]in/
59+
[Oo]bj/
60+
[Ll]og/
61+
[Ll]ogs/
62+
63+
# Visual Studio 2015/2017 cache/options directory
64+
.vs/
65+
# Uncomment if you have tasks that create the project's static files in wwwroot
66+
#wwwroot/
67+
68+
# Visual Studio 2017 auto generated files
69+
Generated\ Files/
70+
71+
# MSTest test Results
72+
[Tt]est[Rr]esult*/
73+
[Bb]uild[Ll]og.*
74+
75+
# NUnit
76+
*.VisualState.xml
77+
TestResult.xml
78+
nunit-*.xml
79+
80+
# Build Results of an ATL Project
81+
[Dd]ebugPS/
82+
[Rr]eleasePS/
83+
dlldata.c
84+
85+
# Benchmark Results
86+
BenchmarkDotNet.Artifacts/
87+
88+
# .NET Core
89+
project.lock.json
90+
project.fragment.lock.json
91+
artifacts/
92+
93+
# ASP.NET Scaffolding
94+
ScaffoldingReadMe.txt
95+
96+
# StyleCop
97+
StyleCopReport.xml
98+
99+
# Files built by Visual Studio
100+
*_i.c
101+
*_p.c
102+
*_h.h
103+
*.ilk
104+
*.meta
105+
*.obj
106+
*.iobj
107+
*.pch
108+
*.pdb
109+
*.ipdb
110+
*.pgc
111+
*.pgd
112+
*.rsp
113+
*.sbr
114+
*.tlb
115+
*.tli
116+
*.tlh
117+
*.tmp
118+
*.tmp_proj
119+
*_wpftmp.csproj
120+
*.log
121+
*.tlog
122+
*.vspscc
123+
*.vssscc
124+
.builds
125+
*.pidb
126+
*.svclog
127+
*.scc
128+
129+
# Chutzpah Test files
130+
_Chutzpah*
131+
132+
# Visual C++ cache files
133+
ipch/
134+
*.aps
135+
*.ncb
136+
*.opendb
137+
*.opensdf
138+
*.sdf
139+
*.cachefile
140+
*.VC.db
141+
*.VC.VC.opendb
142+
143+
# Visual Studio profiler
144+
*.psess
145+
*.vsp
146+
*.vspx
147+
*.sap
148+
149+
# Visual Studio Trace Files
150+
*.e2e
151+
152+
# TFS 2012 Local Workspace
153+
$tf/
154+
155+
# Guidance Automation Toolkit
156+
*.gpState
157+
158+
# ReSharper is a .NET coding add-in
159+
_ReSharper*/
160+
*.[Rr]e[Ss]harper
161+
*.DotSettings.user
162+
163+
# TeamCity is a build add-in
164+
_TeamCity*
165+
166+
# DotCover is a Code Coverage Tool
167+
*.dotCover
168+
169+
# AxoCover is a Code Coverage Tool
170+
.axoCover/*
171+
!.axoCover/settings.json
172+
173+
# Coverlet is a free, cross platform Code Coverage Tool
174+
coverage*.json
175+
coverage*.xml
176+
coverage*.info
177+
178+
# Visual Studio code coverage results
179+
*.coverage
180+
*.coveragexml
181+
182+
# NCrunch
183+
_NCrunch_*
184+
.*crunch*.local.xml
185+
nCrunchTemp_*
186+
187+
# MightyMoose
188+
*.mm.*
189+
AutoTest.Net/
190+
191+
# Web workbench (sass)
192+
.sass-cache/
193+
194+
# Installshield output folder
195+
[Ee]xpress/
196+
197+
# DocProject is a documentation generator add-in
198+
DocProject/buildhelp/
199+
DocProject/Help/*.HxT
200+
DocProject/Help/*.HxC
201+
DocProject/Help/*.hhc
202+
DocProject/Help/*.hhk
203+
DocProject/Help/*.hhp
204+
DocProject/Help/Html2
205+
DocProject/Help/html
206+
207+
# Click-Once directory
208+
publish/
209+
210+
# Publish Web Output
211+
*.[Pp]ublish.xml
212+
*.azurePubxml
213+
# Note: Comment the next line if you want to checkin your web deploy settings,
214+
# but database connection strings (with potential passwords) will be unencrypted
215+
*.pubxml
216+
*.publishproj
217+
218+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
219+
# checkin your Azure Web App publish settings, but sensitive information contained
220+
# in these scripts will be unencrypted
221+
PublishScripts/
222+
223+
# NuGet Packages
224+
*.nupkg
225+
# NuGet Symbol Packages
226+
*.snupkg
227+
# The packages folder can be ignored because of Package Restore
228+
**/[Pp]ackages/*
229+
# except build/, which is used as an MSBuild target.
230+
!**/[Pp]ackages/build/
231+
# Uncomment if necessary however generally it will be regenerated when needed
232+
#!**/[Pp]ackages/repositories.config
233+
# NuGet v3's project.json files produces more ignorable files
234+
*.nuget.props
235+
*.nuget.targets
236+
237+
# Microsoft Azure Build Output
238+
csx/
239+
*.build.csdef
240+
241+
# Microsoft Azure Emulator
242+
ecf/
243+
rcf/
244+
245+
# Windows Store app package directories and files
246+
AppPackages/
247+
BundleArtifacts/
248+
Package.StoreAssociation.xml
249+
_pkginfo.txt
250+
*.appx
251+
*.appxbundle
252+
*.appxupload
253+
254+
# Visual Studio cache files
255+
# files ending in .cache can be ignored
256+
*.[Cc]ache
257+
# but keep track of directories ending in .cache
258+
!?*.[Cc]ache/
259+
260+
# Others
261+
ClientBin/
262+
~$*
263+
*~
264+
*.dbmdl
265+
*.dbproj.schemaview
266+
*.jfm
267+
*.pfx
268+
*.publishsettings
269+
orleans.codegen.cs
270+
271+
# Including strong name files can present a security risk
272+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
273+
#*.snk
274+
275+
# Since there are multiple workflows, uncomment next line to ignore bower_components
276+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
277+
#bower_components/
278+
279+
# RIA/Silverlight projects
280+
Generated_Code/
281+
282+
# Backup & report files from converting an old project file
283+
# to a newer Visual Studio version. Backup files are not needed,
284+
# because we have git ;-)
285+
_UpgradeReport_Files/
286+
Backup*/
287+
UpgradeLog*.XML
288+
UpgradeLog*.htm
289+
ServiceFabricBackup/
290+
*.rptproj.bak
291+
292+
# SQL Server files
293+
*.mdf
294+
*.ldf
295+
*.ndf
296+
297+
# Business Intelligence projects
298+
*.rdl.data
299+
*.bim.layout
300+
*.bim_*.settings
301+
*.rptproj.rsuser
302+
*- [Bb]ackup.rdl
303+
*- [Bb]ackup ([0-9]).rdl
304+
*- [Bb]ackup ([0-9][0-9]).rdl
305+
306+
# Microsoft Fakes
307+
FakesAssemblies/
308+
309+
# GhostDoc plugin setting file
310+
*.GhostDoc.xml
311+
312+
# Node.js Tools for Visual Studio
313+
.ntvs_analysis.dat
314+
node_modules/
315+
316+
# Visual Studio 6 build log
317+
*.plg
318+
319+
# Visual Studio 6 workspace options file
320+
*.opt
321+
322+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
323+
*.vbw
324+
325+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
326+
*.vbp
327+
328+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
329+
*.dsw
330+
*.dsp
331+
332+
# Visual Studio 6 technical files
333+
*.ncb
334+
*.aps
335+
336+
# Visual Studio LightSwitch build output
337+
**/*.HTMLClient/GeneratedArtifacts
338+
**/*.DesktopClient/GeneratedArtifacts
339+
**/*.DesktopClient/ModelManifest.xml
340+
**/*.Server/GeneratedArtifacts
341+
**/*.Server/ModelManifest.xml
342+
_Pvt_Extensions
343+
344+
# Paket dependency manager
345+
.paket/paket.exe
346+
paket-files/
347+
348+
# FAKE - F# Make
349+
.fake/
350+
351+
# CodeRush personal settings
352+
.cr/personal
353+
354+
# Python Tools for Visual Studio (PTVS)
355+
__pycache__/
356+
*.pyc
357+
358+
# Cake - Uncomment if you are using it
359+
# tools/**
360+
# !tools/packages.config
361+
362+
# Tabs Studio
363+
*.tss
364+
365+
# Telerik's JustMock configuration file
366+
*.jmconfig
367+
368+
# BizTalk build output
369+
*.btp.cs
370+
*.btm.cs
371+
*.odx.cs
372+
*.xsd.cs
373+
374+
# OpenCover UI analysis results
375+
OpenCover/
376+
377+
# Azure Stream Analytics local run output
378+
ASALocalRun/
379+
380+
# MSBuild Binary and Structured Log
381+
*.binlog
382+
383+
# NVidia Nsight GPU debugger configuration file
384+
*.nvuser
385+
386+
# MFractors (Xamarin productivity tool) working folder
387+
.mfractor/
388+
389+
# Local History for Visual Studio
390+
.localhistory/
391+
392+
# Visual Studio History (VSHistory) files
393+
.vshistory/
394+
395+
# BeatPulse healthcheck temp database
396+
healthchecksdb
397+
398+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
399+
MigrationBackup/
400+
401+
# Ionide (cross platform F# VS Code tools) working folder
402+
.ionide/
403+
404+
# Fody - auto-generated XML schema
405+
FodyWeavers.xsd
406+
407+
# VS Code files for those working on multiple tools
408+
.vscode/*
409+
!.vscode/settings.json
410+
!.vscode/tasks.json
411+
!.vscode/launch.json
412+
!.vscode/extensions.json
413+
*.code-workspace
414+
415+
# Local History for Visual Studio Code
416+
.history/
417+
418+
# Windows Installer files from build outputs
419+
*.cab
420+
*.msi
421+
*.msix
422+
*.msm
423+
*.msp
424+
425+
# JetBrains Rider
426+
*.sln.iml

0 commit comments

Comments
 (0)