Skip to content

Commit

Permalink
0.1.0-pre5
Browse files Browse the repository at this point in the history
  • Loading branch information
Happypig375 committed Jul 27, 2018
1 parent 6632dc8 commit ca4f1ce
Show file tree
Hide file tree
Showing 16 changed files with 6 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CSharpMath.Forms.Example\CSharpMath.Forms.Example\CSharpMath.Forms.Example.csproj">
<ProjectReference Include="..\CSharpMath.Forms.Example\CSharpMath.Forms.Example.csproj">
<Project>{b3fa77b8-c6e9-4a78-8bd4-9a167da36637}</Project>
<Name>CSharpMath.Forms.Example</Name>
</ProjectReference>
Expand Down
4 changes: 3 additions & 1 deletion CSharpMath.sln
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Typography.TextBreak", "Typ
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpMath.Utils.UWPBuild", "CSharpMath.Utils.UWPBuild\CSharpMath.Utils.UWPBuild.csproj", "{3A17640B-83C6-459F-A046-F954DEA3FDE1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpMath.Forms.Example.WPF", "CSharpMath.Forms.Example.WPF\CSharpMath.Forms.Example.WPF.csproj", "{60549250-61D2-40E0-82C5-7B829193D694}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpMath.Forms.Example.WPF", "CSharpMath.Forms.Example\CSharpMath.Forms.Example.WPF\CSharpMath.Forms.Example.WPF.csproj", "{60549250-61D2-40E0-82C5-7B829193D694}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
Expand Down Expand Up @@ -249,6 +249,7 @@ Global
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Debug|x64.ActiveCfg = Debug|iPhone
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Debug|x86.ActiveCfg = Debug|iPhone
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Debug|x86.Build.0 = Debug|iPhone
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Release|Any CPU.ActiveCfg = Release|iPhone
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Release|Any CPU.Build.0 = Release|iPhone
{664EAD44-C19D-462B-9127-FD1106B4F3C6}.Release|ARM.ActiveCfg = Release|iPhoneSimulator
Expand Down Expand Up @@ -625,6 +626,7 @@ Global
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Debug|x64.ActiveCfg = Debug|iPhone
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Debug|x86.ActiveCfg = Debug|iPhone
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Debug|x86.Build.0 = Debug|iPhone
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Release|Any CPU.ActiveCfg = Release|iPhone
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Release|ARM.ActiveCfg = Release|iPhone
{C5C93C69-E72E-4A87-89DA-1E4718C6306E}.Release|iPhone.ActiveCfg = Release|iPhone
Expand Down
4 changes: 2 additions & 2 deletions CSharpMath/Atoms/Atom/Accent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public Accent(string value): base(MathAtomType.Accent, value) {
.AppendInBraces(InnerList, NullHandling.LiteralNull)
.ToString();

public override T Accept<T, THelper>(IMathAtomVisitor<T, THelper> visitor, THelper helper) {
return visitor.Visit(this, helper);
public override T Accept<T, THelper>(IMathAtomVisitor<T, THelper> visitor, THelper helper) {
return visitor.Visit(this, helper);
}

public Accent(Accent cloneMe, bool finalize): base(cloneMe, finalize) {
Expand Down

0 comments on commit ca4f1ce

Please sign in to comment.