We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff61fb0 commit 9aedd7fCopy full SHA for 9aedd7f
Cabal-syntax/src/Distribution/Types/BuildInfo/Lens.hs
@@ -274,7 +274,7 @@ instance HasBuildInfo BuildInfo where
274
cSources f s = fmap (\x -> s{T.cSources = x}) (f (T.cSources s))
275
{-# INLINE cSources #-}
276
277
- cxxSources f s = fmap (\x -> s{T.cSources = x}) (f (T.cxxSources s))
+ cxxSources f s = fmap (\x -> s{T.cxxSources = x}) (f (T.cxxSources s))
278
{-# INLINE cxxSources #-}
279
280
jsSources f s = fmap (\x -> s{T.jsSources = x}) (f (T.jsSources s))
changelog.d/pr-10609
@@ -0,0 +1,7 @@
1
+---
2
+synopsis: Fix
3
+packages: [Cabal-syntax]
4
+prs: 10609
5
6
+
7
+Fix a typo that would cause cxx-source and c-sources get mixed up.
0 commit comments